﻿@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
  --brand-primary: #1c2430;
  --brand-muted: #1d2229;
  --brand-background: #ffffff;
  --brand-surface: #f0f0f0;
  --brand-black: #070707;
}

:root { 
  --background-color: var(--brand-surface);
  --default-color: var(--brand-muted);
  --heading-color: var(--brand-primary);
  --accent-color: var(--brand-primary);
  --surface-color: var(--brand-surface);
  --contrast-color: var(--brand-surface);
}

:root {
  --nav-color: var(--brand-muted);
  --nav-hover-color: var(--brand-primary);
  --nav-mobile-background-color: var(--brand-surface);
  --nav-dropdown-background-color: var(--brand-surface);
  --nav-dropdown-color: var(--brand-muted);
  --nav-dropdown-hover-color: var(--brand-primary);
}


.light-background {
  --background-color: var(--brand-background);
  --surface-color: var(--brand-surface);
}

.dark-background {
  --background-color: var(--brand-black);
  --default-color: var(--brand-background);
  --heading-color: var(--brand-surface);
  --accent-color: var(--brand-background);
  --surface-color: var(--brand-black);
  --contrast-color: var(--brand-surface);
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 24px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.5s;
  z-index: 997;
}

.index-page:not(.scrolled) .header {
  --nav-color: rgba(255, 255, 255, 0.92);
  --nav-hover-color: #ffffff;
}

.index-page:not(.scrolled) .header .logo img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

.index-page.scrolled .header .logo img {
  filter: none;
}

.index-page.mobile-nav-active .header .logo img {
  filter: none;
}

.header .container-xl {
  min-height: 72px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 62px;
  margin-right: 12px;
  transition: max-height 0.42s ease;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  --nav-color: var(--brand-primary);
  --nav-hover-color: var(--brand-primary);
  isolation: isolate;
  background: #ffffff;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
}

.scrolled .header .logo img {
  max-height: 70px;
}

.scrolled .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu .mobile-menu-brand {
    display: none;
  }

  .navmenu {
    width: 100%;
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: 96px;
    width: 100%;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu .nav-group {
    display: flex;
    align-items: center;
    gap: 50px;
  }

  .navmenu .nav-group-left {
    justify-self: start;
  }

  .navmenu .nav-logo-item {
    justify-self: center;
  }

  .navmenu .nav-group-right {
    justify-self: end;
  }

  .navmenu .mobile-logo {
    display: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 0;
    font-size: 14px;
    font-family: var(--heading-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    letter-spacing: 3.1px;
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
  }

  .navmenu a::after,
  .navmenu a:focus::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 20px;
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
  }

  .navmenu .nav-logo,
  .navmenu .nav-logo:focus {
    padding: 0;
    text-transform: none;
    min-width: 220px;
    justify-content: center;
  }

  .navmenu .nav-logo::after,
  .navmenu .nav-logo:focus::after,
  .navmenu .nav-logo:hover::after {
    display: none;
  }

  .navmenu .nav-logo h1 {
    color: var(--heading-color);
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu a:hover::after,
  .navmenu .active::after,
  .navmenu .active:focus::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .header {
    background: transparent;
    padding: 14px 0;
    border-bottom: 1px solid transparent;
  }

  .header .container-xl {
    min-height: 56px;
    justify-content: center !important;
  }

  .header .mobile-logo {
    display: flex !important;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 9999;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .header .mobile-logo img {
    width: 138px;
    max-width: 46vw;
    max-height: 42px;
    margin-right: 0;
    filter: brightness(0) invert(1) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
  }

  .mobile-nav-active .header .mobile-logo img,
  .scrolled .header .mobile-logo img {
    filter: none;
  }

  .scrolled .header {
    background: #fff;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  }

  .mobile-nav-active .header {
    background: #fff;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  }

  .scrolled .mobile-nav-toggle {
    color: var(--brand-primary);
  }

  .mobile-nav-toggle {
    color: #fff;
    font-size: 0;
    line-height: 0;
    position: fixed;
    left: 15px;
    top: 30px;
    width: 34px;
    height: 24px;
    margin-right: 0;
    transform: none;
    cursor: pointer;
    transition: color 0.3s;
  }

  .mobile-nav-toggle::before,
  .mobile-nav-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    width: 34px;
    height: 2px;
    background: currentColor;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
    transition: transform 0.3s ease, top 0.3s ease, box-shadow 0.3s ease;
  }

  .scrolled .mobile-nav-toggle::before,
  .scrolled .mobile-nav-toggle::after,
  .mobile-nav-active .mobile-nav-toggle::before,
  .mobile-nav-active .mobile-nav-toggle::after {
    filter: none;
  }

  .mobile-nav-toggle::before {
    top: 4px;
    box-shadow: 10px 8px 0 currentColor;
  }

  .mobile-nav-toggle::after {
    top: 20px;
    width: 24px;
    left: 10px;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: block;
    list-style: none;
    position: fixed;
    inset: 84px 0 0 0;
    width: 100vw;
    height: calc(100vh - 84px);
    min-height: 0;
    padding: 36px 32px;
    margin: 0;
    border-radius: 0;
    background-color: #fff;
    overflow-y: auto;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
    z-index: 9998;
    box-shadow: none;
  }

  .navmenu .nav-logo-item {
    display: none;
  }

  .navmenu .nav-group {
    display: block;
  }

  .navmenu .mobile-menu-brand {
    display: none;
  }

  .navmenu .mobile-menu-brand a {
    pointer-events: none;
  }

  .navmenu .mobile-menu-brand .logo {
    justify-content: center;
    flex: 1;
    padding: 0;
  }

  .navmenu .mobile-menu-brand .logo img {
    max-height: 50px;
    margin-right: 0;
    filter: grayscale(1);
    opacity: 0.7;
  }

  .navmenu .mobile-menu-close {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--brand-primary);
    padding: 14px 0;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2.6px;
    line-height: 1.25;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    text-transform: uppercase;
    position: relative;
    border-bottom: 1px solid rgba(74, 85, 101, 0.08);
    transition: color 0.3s ease, padding-left 0.3s ease;
  }

  .navmenu a::before,
  .navmenu a:focus::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--brand-primary);
    transform: translateY(-50%);
    transition: width 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--brand-primary);
    padding-left: 22px;
  }

  .navmenu a:hover::before,
  .navmenu .active::before,
  .navmenu .active:focus::before {
    width: 14px;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(74, 85, 101, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(74, 85, 101, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--brand-primary);
    position: fixed;
    top: 30px;
    left: 15px;
    right: auto;
    margin-right: 0;
    z-index: 10000;
    transform: none;
  }

  .mobile-nav-active .mobile-nav-toggle::before {
    top: 11px;
    transform: rotate(45deg);
    box-shadow: 0 0 0 transparent;
  }

  .mobile-nav-active .mobile-nav-toggle::after {
    top: 11px;
    width: 34px;
    left: 0;
    transform: rotate(-45deg);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 84px 0 0 0;
    background: transparent;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    visibility: visible;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --footer-line: rgba(255, 255, 255, 0.12);
  --footer-muted: rgba(255, 255, 255, 0.66);
  color: #ffffff;
  background: var(--brand-black);
  font-size: 14px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-muted), transparent 58%);
  opacity: 0.72;
}

.footer .footer-main {
  display: grid;
  grid-template-columns: minmax(360px, 1.8fr) minmax(130px, 0.56fr) minmax(180px, 0.72fr) minmax(170px, 0.62fr);
  gap: clamp(38px, 5vw, 82px);
  padding: 62px 0 48px;
  border-bottom: 1px solid var(--footer-line);
}

.footer .footer-brand {
  display: inline-block;
}

.footer .footer-brand img {
  display: block;
  width: 158px;
  max-width: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer .footer-about p {
  color: var(--footer-muted);
  font-family: var(--heading-font);
  font-size: 13px;
  line-height: 1.78;
  margin: 25px 0 0;
  max-width: 360px;
}

.footer h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--nav-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 4px 0 19px;
  text-transform: uppercase;
}

.footer h4::before {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

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

.footer .footer-links ul li {
  padding: 5px 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: var(--footer-muted);
  font-size: 13px;
  line-height: 1.45;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer .footer-links ul a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer .footer-static-list span {
  display: inline-block;
  color: var(--footer-muted);
  font-size: 13px;
  line-height: 1.45;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer .footer-static-list li:hover span {
  color: #ffffff;
  transform: translateX(5px);
}

.footer .footer-address-label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--nav-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.footer .footer-address {
  max-width: 220px;
  margin: 0;
  color: var(--footer-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.72;
}

.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--footer-muted);
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 22px 0 24px;
}

.footer .footer-bottom-copy {
  display: flex;
  gap: 28px;
}

.footer .footer-bottom-copy p {
  margin: 0;
}

.footer .footer-credit {
  color: rgba(255, 255, 255, 0.48);
}

.footer .footer-credit a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.footer .footer-credit a:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.56);
}

.footer .social-links {
  gap: 8px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transition: 0.3s ease;
}

.footer .social-links i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.footer .social-links i::before {
  display: block;
  line-height: 1;
}

.footer .social-links a:hover {
  color: var(--brand-muted);
  background: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 991px) {
  .footer .footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
  }

  .footer .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .footer .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 20px;
    padding: 50px 0 38px;
  }

  .footer .footer-about p {
    margin-top: 24px;
  }

  .footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    line-height: 1.65;
    padding: 30px 0 34px;
  }

  .footer .footer-bottom-copy {
    display: block;
  }

  .footer .footer-credit {
    margin-top: 6px !important;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 40px 0 20px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 87px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
}

.section-title .subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title .subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.section-title p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 0;
  background: var(--brand-black);
}

.hero .hero-slider,
.hero .swiper-wrapper,
.hero .swiper-slide {
  min-height: 100svh;
}

.hero .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
  z-index: -3;
}

.hero .swiper-slide-active .hero-bg {
  transform: scale(1);
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.32) 0%, rgba(7, 7, 7, 0.13) 52%, rgba(7, 7, 7, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.34) 0%, rgba(7, 7, 7, 0.04) 52%, rgba(7, 7, 7, 0.1) 100%);
  z-index: -2;
}

.hero .hero-blueprint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  z-index: -1;
}

.hero .hero-blueprint::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 118px 118px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, var(--brand-primary) 12%, var(--brand-primary) 74%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, var(--brand-primary) 12%, var(--brand-primary) 74%, transparent 100%);
}

.hero .blueprint-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.28);
  transform-origin: left center;
  animation: blueprint-line-draw 1.2s ease forwards;
}

.hero .blueprint-line::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.hero .line-a {
  width: 230px;
  height: 1px;
  left: 7%;
  bottom: 28%;
}

.hero .line-a::after {
  right: -4px;
  top: -3px;
}

.hero .line-b {
  width: 1px;
  height: 150px;
  left: 12%;
  bottom: 22%;
}

.hero .line-b::after {
  left: -3px;
  top: -4px;
}

.hero .line-c {
  width: 210px;
  height: 1px;
  right: 9%;
  bottom: 19%;
}

.hero .line-c::after {
  left: -4px;
  top: -3px;
}

.hero .blueprint-corner {
  position: absolute;
  width: 170px;
  height: 86px;
  border-color: rgba(255, 255, 255, 0.24);
  border-style: solid;
  opacity: 0;
  animation: blueprint-fade 1s ease 0.5s forwards;
}

.hero .corner-a {
  left: 10%;
  top: 28%;
  border-width: 1px 0 0 1px;
}

.hero .corner-b {
  right: 9%;
  bottom: 20%;
  border-width: 0 1px 1px 0;
}

.hero .blueprint-plan {
  position: absolute;
  width: min(34vw, 480px);
  aspect-ratio: 1.45;
  right: 13%;
  top: 19%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, transparent 34%, rgba(255, 255, 255, 0.11) 34% 35%, transparent 35%),
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.1) 48% 49%, transparent 49%),
    linear-gradient(135deg, transparent 51%, rgba(255, 255, 255, 0.09) 51% 52%, transparent 52%);
  opacity: 0;
  animation: blueprint-fade 1.1s ease 0.65s forwards;
}

.hero .blueprint-plan::before,
.hero .blueprint-plan::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero .blueprint-drawing {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
}

.hero .blueprint-drawing path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: blueprint-path-draw 2.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.hero .blueprint-drawing path:nth-child(2) {
  animation-delay: 0.22s;
}

.hero .blueprint-drawing path:nth-child(3) {
  animation-delay: 0.42s;
}

.hero .blueprint-drawing path:nth-child(4) {
  animation-delay: 0.62s;
}

.hero .blueprint-plan::before {
  width: 22%;
  height: 38%;
  left: 8%;
  top: 12%;
}

.hero .blueprint-plan::after {
  width: 30%;
  height: 32%;
  right: 9%;
  bottom: 12%;
}

.hero .hero-container {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 96px;
}

.hero .hero-content {
  max-width: 1020px;
  color: #ffffff;
  text-align: center;
  transform: translateY(13vh);
}

.hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
  font-family: var(--nav-font);
  font-size: clamp(0.82rem, 1.4vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.hero .hero-kicker::before {
  content: "";
  width: 74px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero .hero-kicker::after {
  content: "";
  width: 74px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero .hero-content h1 {
  max-width: 1020px;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(3.4rem, 6.8vw, 6.6rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

.hero .hero-content p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.hero .hero-pagination {
  position: absolute;
  right: 50px;
  bottom: 58px;
  width: auto;
  left: auto;
  top: auto;
  transform: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  z-index: 4;
}

.hero .hero-pagination .swiper-pagination-bullet {
  width: 42px;
  height: 2px;
  margin: 0;
  border-radius: 0;
  opacity: 1;
  background: rgba(255, 255, 255, 0.28);
  transition: width 0.35s ease, background-color 0.35s ease;
}

.hero .hero-pagination .swiper-pagination-bullet-active {
  width: 78px;
  background: rgba(255, 255, 255, 0.92);
}

.hero .hero-arrows {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero .hero-arrow-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  pointer-events: auto;
}

.hero .hero-arrow-zone-prev {
  left: 0;
}

.hero .hero-arrow-zone-next {
  right: 0;
}

.hero .hero-arrows button {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  opacity: 0;
  transform: translateY(-50%) scale(0.94);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.hero .hero-arrows button i {
  font-size: 2.3rem;
  line-height: 1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.hero .hero-prev {
  left: 38px;
}

.hero .hero-next {
  right: 38px;
}

@media (hover: hover) and (pointer: fine) {
  .hero-arrow-zone:hover button {
    opacity: 1;
    transform: translateY(-50%) scale(1) translateX(0);
  }

  .hero-arrow-zone-prev button {
    transform: translateY(-50%) translateX(-10px);
  }

  .hero-arrow-zone-next button {
    transform: translateY(-50%) translateX(10px);
  }
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: clamp(2.7rem, 8.6vw, 4.6rem);
  }

  .hero .blueprint-plan {
    width: 46vw;
    right: -8%;
    top: 18%;
  }

  .hero .hero-pagination {
    right: 28px;
  }
}

@media (max-width: 768px) {
  .hero .hero-bg {
    object-position: 58% center;
  }

  .hero .hero-container {
    align-items: center;
    padding-top: 110px;
    padding-bottom: 80px;
  }

  .hero .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 7, 7, 0.5) 0%, rgba(7, 7, 7, 0.18) 62%, rgba(7, 7, 7, 0.24) 100%),
      linear-gradient(90deg, rgba(7, 7, 7, 0.36) 0%, rgba(7, 7, 7, 0.12) 100%);
  }

  .hero .hero-content h1 {
    letter-spacing: 0.14em;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
  }

  .hero .hero-kicker {
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
  }

  .hero .hero-kicker::before,
  .hero .hero-kicker::after {
    width: 30px;
  }

  .hero .hero-content p {
    max-width: 340px;
    font-size: 0.78rem;
    line-height: 1.55;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.36);
  }

  .hero .hero-arrows {
    display: none;
  }

  .hero .hero-pagination {
    right: auto;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    gap: 8px;
  }

  .hero .hero-pagination .swiper-pagination-bullet {
    width: 34px;
    height: 2px;
  }

  .hero .hero-pagination .swiper-pagination-bullet-active {
    width: 64px;
  }

}

@media (max-width: 576px) {
  .hero .hero-blueprint {
    opacity: 0.46;
  }

  .hero .hero-content {
    width: min(100%, 370px);
    transform: translateY(7vh);
  }

  .hero .hero-content h1 {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    font-size: clamp(2.22rem, 9.8vw, 2.48rem);
    line-height: 0.94;
    letter-spacing: 0.08em;
  }

  .hero .hero-kicker {
    margin-bottom: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
  }

  .hero .hero-kicker::before,
  .hero .hero-kicker::after {
    width: 38px;
  }

  .hero .hero-content p {
    max-width: 310px;
    font-size: 0.72rem;
    line-height: 1.55;
    letter-spacing: 0.05em;
  }

  .hero .blueprint-plan {
    display: none;
  }
}

/* Minimal editorial hero variation */
.hero .hero-blueprint {
  display: none;
}

.hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.58) 0%, rgba(7, 7, 7, 0.3) 38%, rgba(7, 7, 7, 0.05) 76%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.3), rgba(7, 7, 7, 0.03) 62%);
}

.hero .hero-container {
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 132px;
  padding-bottom: clamp(74px, 10vh, 108px);
}

.hero .hero-content {
  max-width: 920px;
  color: #ffffff;
  text-align: left;
  transform: none;
}

.hero .hero-kicker {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-shadow: none;
}

.hero .hero-kicker::before,
.hero .hero-kicker::after {
  display: none;
}

.hero .hero-content h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(2.85rem, 4.8vw, 5.2rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: none;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.hero .hero-content h1 strong {
  font-weight: 600;
}

.hero .hero-content p {
  max-width: 590px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.68;
  text-transform: none;
  text-shadow: none;
}

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

.hero .hero-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-family: var(--nav-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
}

.hero .hero-action-primary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-primary);
}

.hero .hero-action-primary:hover {
  background: #ffffff;
  color: var(--brand-primary);
}

.hero .hero-action-secondary {
  background: transparent;
  color: #ffffff;
}

.hero .hero-action-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero .hero-content>* {
  opacity: 0;
  transform: translateY(24px);
}

.hero .swiper-slide-active .hero-kicker {
  animation: hero-copy-reveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hero .swiper-slide-active .hero-content h1 {
  animation: hero-copy-reveal 0.84s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.hero .swiper-slide-active .hero-content p {
  animation: hero-copy-reveal 0.76s cubic-bezier(0.22, 1, 0.36, 1) 0.46s forwards;
}

.hero .swiper-slide-active .hero-actions {
  animation: hero-copy-reveal 0.76s cubic-bezier(0.22, 1, 0.36, 1) 0.62s forwards;
}

.hero .hero-pagination {
  right: 36px;
  bottom: 42px;
}

.hero .hero-pagination .swiper-pagination-bullet {
  width: 34px;
}

.hero .hero-pagination .swiper-pagination-bullet-active {
  width: 62px;
}

@keyframes hero-copy-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@media (max-width: 768px) {
  .hero .hero-container {
    align-items: flex-end;
    padding-top: 110px;
    padding-bottom: 96px;
  }

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

  .hero .hero-content h1 {
    max-width: 560px;
    font-size: clamp(2.45rem, 8.8vw, 3.75rem);
    line-height: 1;
  }

  .hero .hero-content p {
    max-width: 420px;
    font-size: 0.78rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content {
    width: min(100%, 350px);
    transform: none;
  }

  .hero .hero-kicker {
    margin-bottom: 14px;
    font-size: 0.58rem;
  }

  .hero .hero-content h1 {
    max-width: 320px;
    margin-bottom: 16px;
    font-size: clamp(2.15rem, 10.5vw, 2.85rem);
    line-height: 1.02;
  }

  .hero .hero-content p {
    max-width: 330px;
    margin-bottom: 22px;
    font-size: 0.74rem;
  }

  .hero .hero-actions a {
    min-height: 40px;
    padding: 0 15px;
    font-size: 0.64rem;
  }
}

@keyframes blueprint-path-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes blueprint-line-draw {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes blueprint-fade {
  to {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Featured Projects Section
--------------------------------------------------------------*/
.featured-projects {
  padding: 110px 0;
  background: var(--brand-background);
  color: var(--brand-primary);
  overflow: hidden;
}

.featured-projects .featured-projects-header {
  max-width: 900px;
  margin-bottom: 54px;
}

.featured-projects .section-code {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-family: var(--nav-font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
}

.featured-projects .section-code::before {
  content: "";
  width: 48px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 55%);
}

.featured-projects h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.featured-projects .featured-projects-header p {
  max-width: 560px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.8;
}

.featured-projects .featured-projects-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  grid-template-rows: repeat(2, minmax(260px, auto));
  gap: 24px;
}

.featured-projects .featured-project-item {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-rows: minmax(190px, 1fr) auto;
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  overflow: hidden;
}

.featured-projects .featured-project-main {
  grid-row: span 2;
  min-height: 620px;
}

.featured-projects .project-placeholder {
  position: relative;
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(74, 85, 101, 0.92), rgba(74, 85, 101, 0.54)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 55%),
    var(--brand-black);
  overflow: hidden;
}

.featured-projects .project-placeholder .project-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.featured-projects .project-placeholder .project-image~span {
  z-index: 2;
}

.featured-projects .project-placeholder.compact {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(74, 85, 101, 0.9), rgba(74, 85, 101, 0.5)),
    var(--brand-black);
}

.featured-projects .project-placeholder.warm {
  background:
    linear-gradient(135deg, rgba(74, 85, 101, 0.92), rgba(74, 85, 101, 0.5)),
    var(--brand-black);
}

.featured-projects .placeholder-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
}

.featured-projects .project-placeholder::before,
.featured-projects .project-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.featured-projects .project-placeholder::before {
  width: 38%;
  height: 34%;
  right: 10%;
  top: 16%;
}

.featured-projects .project-placeholder::after {
  width: 28%;
  height: 28%;
  left: 12%;
  bottom: 14%;
}

.featured-projects .placeholder-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.42);
}

.featured-projects .line-top {
  width: 42%;
  height: 1px;
  left: 10%;
  top: 20%;
}

.featured-projects .line-side {
  width: 1px;
  height: 44%;
  right: 18%;
  bottom: 18%;
}

.featured-projects .placeholder-mark {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.featured-projects .placeholder-mark::before,
.featured-projects .placeholder-mark::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.45);
}

.featured-projects .placeholder-mark::before {
  width: 1px;
  height: 70px;
  left: 50%;
  top: -14px;
}

.featured-projects .placeholder-mark::after {
  width: 70px;
  height: 1px;
  top: 50%;
  left: -14px;
}

.featured-projects .project-summary {
  padding: 28px;
}

.featured-projects .featured-project-main .project-summary {
  padding: 34px;
}

.featured-projects .project-type {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--nav-font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 48%);
}

.featured-projects .project-summary h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 300;
  line-height: 1.2;
}

.featured-projects .project-summary p {
  max-width: 620px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 26%);
  line-height: 1.75;
}

@media (max-width: 992px) {
  .featured-projects {
    padding: 86px 0;
  }

  .featured-projects .featured-projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .featured-projects .featured-project-main {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .featured-projects {
    padding: 70px 0;
  }

  .featured-projects .featured-projects-header {
    margin-bottom: 34px;
  }

  .featured-projects h2 {
    font-size: 2.1rem;
  }

  .featured-projects .project-placeholder,
  .featured-projects .project-placeholder.compact {
    min-height: 240px;
  }

  .featured-projects .project-summary,
  .featured-projects .featured-project-main .project-summary {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Site Method Section
--------------------------------------------------------------*/
.site-method {
  position: relative;
  padding: 92px 0 102px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 242, 242, 0.98)),
    #ffffff;
  color: var(--brand-primary);
  overflow: hidden;
}

.site-method-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 85, 101, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 85, 101, 0.055) 1px, transparent 1px);
  background-size: 108px 108px;
  mask-image: linear-gradient(180deg, var(--brand-primary), transparent 78%);
  opacity: 0.42;
  pointer-events: none;
}

.site-method::before {
  content: "";
  position: absolute;
  width: 34vw;
  height: 34vw;
  right: -18vw;
  top: 8%;
  border: 1px solid rgba(74, 85, 101, 0.06);
  transform: rotate(18deg);
  pointer-events: none;
}

.site-method::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 85, 101, 0.16), transparent);
  pointer-events: none;
}

.site-method .container {
  position: relative;
  z-index: 2;
}

.site-method-header {
  margin-bottom: 30px;
}

.site-method-header span,
.site-log-phase,
.site-log-status,
.site-proof-strip span {
  font-family: var(--nav-font);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-method-header span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(74, 85, 101, 0.44);
  font-size: 0.68rem;
}

.site-method-header span::before {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(74, 85, 101, 0.28);
}

.site-method-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

.site-method-visual {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--brand-background);
  border: 1px solid rgba(74, 85, 101, 0.12);
  border-radius: 0;
  clip-path: none;
  isolation: isolate;
}

.site-method-visual img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.06) saturate(0.88);
  transform: scale(1.01);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.site-method-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01) 18%, rgba(0, 0, 0, 0.64) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: auto, 96px 100%;
}

.site-method-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 7, 7, 0.68) 100%);
  pointer-events: none;
}

.site-method-visual:hover img {
  filter: grayscale(0.05) contrast(1.1) saturate(0.95);
  transform: scale(1.05);
}

.site-method-visual figcaption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
  z-index: 2;
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-family: var(--heading-font);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.34);
}

.site-method-visual figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--nav-font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.site-method-visual figcaption span::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.62);
}

.site-method-visual figcaption strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.site-method-visual figcaption p {
  max-width: 620px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.62;
}

.site-method-log {
  position: relative;
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(74, 85, 101, 0.12);
  border-left: 1px solid rgba(74, 85, 101, 0.1);
}

.site-method-log::before {
  display: none;
}

.site-log-row {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-height: 218px;
  padding: 34px 34px 30px;
  border-right: 1px solid rgba(74, 85, 101, 0.1);
  border-bottom: 1px solid rgba(74, 85, 101, 0.12);
}

.site-log-row::before {
  display: none;
}

.site-log-row:hover {
  transform: none;
  border-color: rgba(74, 85, 101, 0.12);
}

.site-log-no {
  position: relative;
  color: rgba(74, 85, 101, 0.28);
  font-family: var(--heading-font);
  font-size: clamp(2.3rem, 3.6vw, 3.85rem);
  font-weight: 200;
  line-height: 0.82;
  letter-spacing: 0;
}

.site-log-no::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: -16px;
  width: 28px;
  height: 1px;
  background: rgba(74, 85, 101, 0.22);
}

.site-log-phase {
  display: block;
  margin-bottom: 10px;
  color: rgba(74, 85, 101, 0.42);
  font-size: 0.62rem;
  line-height: 1.5;
}

.site-log-row h3 {
  margin: 0 0 12px;
  color: var(--brand-primary);
  font-size: clamp(1.18rem, 1.55vw, 1.54rem);
  font-weight: 400;
  line-height: 1.25;
}

.site-log-row p {
  max-width: 540px;
  margin: 0;
  color: rgba(74, 85, 101, 0.62);
  font-size: 0.94rem;
  line-height: 1.74;
}

.site-log-status {
  grid-column: 2;
  justify-self: start;
  padding-top: 0;
  color: rgba(74, 85, 101, 0.4);
  font-size: 0.58rem;
  line-height: 1.55;
  text-align: left;
}

.site-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 38px;
  margin-left: 0;
  border-top: 1px solid rgba(74, 85, 101, 0.12);
  border-left: 1px solid rgba(74, 85, 101, 0.1);
  background: transparent;
}

.site-proof-strip div {
  position: relative;
  min-height: 136px;
  padding: 22px;
  border-right: 1px solid rgba(74, 85, 101, 0.1);
  border-bottom: 1px solid rgba(74, 85, 101, 0.1);
  background: transparent;
}

.site-proof-strip div::before {
  display: none;
}

.site-proof-strip div::after {
  display: none;
}

.site-proof-strip div:hover {
  transform: none;
}

.site-proof-strip span {
  display: block;
  margin-bottom: 24px;
  color: rgba(74, 85, 101, 0.36);
  font-size: 0.6rem;
}

.site-proof-strip strong {
  display: block;
  margin-bottom: 9px;
  color: var(--brand-primary);
  font-family: var(--heading-font);
  font-size: 1.04rem;
  font-weight: 500;
}

.site-proof-strip p {
  margin: 0;
  color: rgba(74, 85, 101, 0.58);
  font-size: 0.86rem;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .site-log-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .site-log-status {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 992px) {
  .site-method {
    padding: 88px 0;
  }

  .site-method-layout {
    gap: 34px;
  }

  .site-method-header {
    margin-bottom: 42px;
  }

  .site-method-visual {
    width: 100%;
    min-height: 500px;
    margin: 0;
  }

  .site-method-log {
    grid-template-columns: 1fr;
  }

  .site-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 0;
    margin-top: 64px;
  }
}

@media (max-width: 576px) {
  .site-method {
    padding: 72px 0;
  }

  .site-method-header span {
    gap: 12px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .site-method-header span::before {
    width: 34px;
  }

  .site-method-visual {
    min-height: 340px;
  }

  .site-log-row {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    min-height: auto;
    padding: 24px 18px;
  }

  .site-log-row p {
    font-size: 0.92rem;
  }

  .site-log-no {
    font-size: 2.35rem;
  }

  .site-log-no::after {
    width: 20px;
    bottom: -12px;
  }

  .site-proof-strip {
    grid-template-columns: 1fr;
  }

  .site-proof-strip div {
    min-height: auto;
  }
}

/*--------------------------------------------------------------
# Split CTA Section
--------------------------------------------------------------*/
.split-cta {
  position: relative;
  min-height: clamp(320px, 38vh, 410px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58) 48%, rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18)),
    url("../img/hero/hero-interior.png") center center / cover fixed;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.split-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24) 32%, rgba(255, 255, 255, 0.24) 68%, transparent),
    linear-gradient(180deg, rgba(74, 85, 101, 0.08), transparent 28%, transparent 72%, rgba(74, 85, 101, 0.08));
  pointer-events: none;
}

.split-cta-media {
  display: none;
}

.split-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.94) contrast(1.02) saturate(0.86);
}

.split-cta-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 64px) clamp(24px, 4vw, 52px);
}

.split-cta-content::before,
.split-cta-content::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(42px, 6vw, 92px);
  height: 1px;
  background: rgba(74, 85, 101, 0.28);
  transform: translateY(-50%);
}

.split-cta-content::before {
  left: clamp(24px, 4vw, 52px);
}

.split-cta-content::after {
  right: clamp(24px, 4vw, 52px);
}

.split-cta-copy {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 46px) clamp(8px, 1vw, 16px);
  text-align: center;
}

.split-cta-copy::before,
.split-cta-copy::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(160px, 34vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 85, 101, 0.48), transparent);
  transform: translateX(-50%);
}

.split-cta-copy::before {
  top: 0;
}

.split-cta-copy::after {
  bottom: 0;
}

.split-cta-copy>span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  margin-bottom: 20px;
  color: var(--brand-primary);
  font-family: var(--nav-font);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.split-cta-copy>span::before,
.split-cta-copy>span::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(74, 85, 101, 0.42);
}

.split-cta h2 {
  max-width: 940px;
  margin: 0 auto 20px;
  color: var(--brand-primary);
  font-family: var(--heading-font);
  font-size: clamp(2.05rem, 3.85vw, 3.95rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.015em;
  text-transform: none;
}

.split-cta h2 em {
  position: relative;
  color: var(--brand-primary);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: inherit;
}

.split-cta h2 em::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 0.02em;
  bottom: 0.08em;
  height: 0.12em;
  background: rgba(74, 85, 101, 0.16);
  z-index: -1;
}

.split-cta h2 span {
  display: inline-block;
  font-weight: 250;
  letter-spacing: 0.07em;
  line-height: inherit;
  text-transform: uppercase;
  transform: translateX(-0.18em);
}

.split-cta h2 strong {
  display: inline-block;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: inherit;
  transform: translateX(0.12em);
}

.split-cta p {
  max-width: 690px;
  margin: 0 auto 24px;
  color: rgba(74, 85, 101, 0.82);
  font-size: clamp(0.88rem, 0.95vw, 0.98rem);
  font-weight: 500;
  line-height: 1.58;
}

.split-cta-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px 0 24px;
  border: 1px solid var(--brand-primary);
  border-radius: 999px;
  background: var(--brand-primary);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.split-cta-link::after {
  content: "";
  width: 24px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
  transition: width 0.28s ease, opacity 0.28s ease;
}

.split-cta-link:hover {
  color: #ffffff;
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.split-cta-link:hover::after {
  width: 34px;
  opacity: 0.72;
}

@media (max-width: 992px) {
  .split-cta {
    min-height: 380px;
  }

  .split-cta-content::before,
  .split-cta-content::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .split-cta {
    min-height: 430px;
    align-items: center;
    background-attachment: scroll;
    background-position: 58% center;
  }

  .split-cta-content {
    padding: 42px 24px;
  }

  .split-cta-copy>span {
    margin-bottom: 14px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .split-cta-copy>span::before,
  .split-cta-copy>span::after {
    width: 22px;
  }

  .split-cta h2 {
    margin-bottom: 14px;
    font-size: 1.95rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .split-cta p {
    max-width: 320px;
    margin-bottom: 20px;
    font-size: 0.86rem;
  }

  .split-cta-link {
    min-height: 40px;
    padding: 0 16px 0 18px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .split-cta-link::after {
    width: 18px;
    margin-left: 10px;
  }
}

/*--------------------------------------------------------------
# About Editorial Section
--------------------------------------------------------------*/
.about-editorial {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 0 0;
  background: var(--brand-background);
  overflow: hidden;
}

.about-editorial::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: rgba(74, 85, 101, 0.035);
  pointer-events: none;
}

.about-editorial-inner {
  position: relative;
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.about-editorial-media {
  position: relative;
  min-width: 0;
  min-height: clamp(430px, 43vw, 590px);
  order: 1;
}

.about-editorial-media>img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.78) contrast(1.05) brightness(0.82);
}

.about-editorial-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.about-editorial-copy {
  position: relative;
  min-width: 0;
  max-width: 560px;
  order: 2;
}

.about-editorial-copy::before {
  content: "ALKA";
  position: absolute;
  top: -38px;
  right: 0;
  color: rgba(74, 85, 101, 0.045);
  font-family: var(--heading-font);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.about-editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--brand-muted);
  font-family: var(--nav-font);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.about-editorial-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: rgba(74, 85, 101, 0.68);
}

.about-editorial h2 {
  position: relative;
  margin: 0 0 26px;
  color: var(--brand-primary);
  font-family: var(--heading-font);
  font-size: clamp(2.45rem, 4.15vw, 4.65rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.about-editorial h2 strong {
  color: var(--brand-muted);
  font-weight: 600;
}

.about-editorial-copy>p {
  position: relative;
  max-width: 520px;
  margin: 0 0 30px;
  padding-left: 0;
  color: rgba(74, 85, 101, 0.7);
  font-size: clamp(0.94rem, 1vw, 1.02rem);
  font-weight: 400;
  line-height: 1.82;
}

.about-editorial-copy>p::before {
  display: none;
}

.about-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-muted);
  font-family: var(--nav-font);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-editorial-link i {
  color: var(--brand-muted);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.about-editorial-link:hover {
  color: var(--brand-muted);
}

.about-editorial-link:hover i {
  transform: translateX(6px);
}

.about-editorial-lines {
  width: min(100% - 48px, 1240px);
  margin: clamp(58px, 6vw, 82px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  border-top: 1px solid rgba(74, 85, 101, 0.16);
}

.about-editorial-lines div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 0 24px;
  border-right: 1px solid rgba(74, 85, 101, 0.16);
  transition: none;
}

.about-editorial-lines div:last-child {
  border-right: 0;
}

.about-editorial-lines strong {
  color: rgba(74, 85, 101, 0.78);
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.25;
}

.about-editorial-lines span {
  color: rgba(74, 85, 101, 0.82);
  font-family: var(--nav-font);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .about-editorial-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-editorial-media {
    order: 1;
    min-height: 440px;
  }

  .about-editorial-copy {
    order: 2;
    max-width: 680px;
  }

  .about-editorial-lines {
    grid-template-columns: 1fr;
  }

  .about-editorial-lines div {
    border-right: 0;
  }
}

@media (max-width: 576px) {
  .about-editorial {
    padding: 68px 0 0;
  }

  .about-editorial-inner {
    width: min(100% - 36px, 1180px);
    gap: 34px;
  }

  .about-editorial-media {
    min-height: 310px;
  }

  .about-editorial-kicker {
    margin-bottom: 20px;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  .about-editorial-kicker::before {
    width: 34px;
  }

  .about-editorial h2 {
    margin-bottom: 22px;
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .about-editorial-copy>p {
    margin-bottom: 26px;
    font-size: 0.92rem;
  }

  .about-editorial-lines div {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 62px;
    padding: 0;
  }

  .about-editorial-lines strong {
    font-size: 1.25rem;
  }

  .about-editorial-lines span {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 120px;
  padding-bottom: 120px;
}

.about .content h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 30px;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .about .content h2 {
    font-size: 32px;
  }
}

.about .content .lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .stats-row {
  display: flex;
  gap: 40px;
  margin: 60px 0;
}

@media (max-width: 576px) {
  .about .stats-row {
    flex-direction: column;
    gap: 30px;
  }
}

.about .stats-row .stat-item .stat-number {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about .stats-row .stat-item .stat-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 8px;
}

.about .cta-section {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 576px) {
  .about .cta-section {
    flex-direction: column;
  }
}

.about .cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about .cta-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.about .cta-section .btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  text-decoration: none;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about .cta-section .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.about .image-wrapper {
  position: relative;
}

.about .image-wrapper img {
  border-radius: 12px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .image-wrapper .floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  max-width: 280px;
}

@media (max-width: 992px) {
  .about .image-wrapper .floating-card {
    position: static;
    margin-top: 30px;
    max-width: none;
  }
}

.about .image-wrapper .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about .image-wrapper .floating-card .card-content .icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about .image-wrapper .floating-card .card-content .icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.about .image-wrapper .floating-card .card-content .text h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
}

.about .image-wrapper .floating-card .card-content .text p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .about .row {
    text-align: center;
  }

  .about .content {
    margin-bottom: 60px;
  }

  .about .stats-row {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 2%);
}

.services .service-item {
  padding: 60px 40px;
  background-color: var(--surface-color);
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
}

.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-item:hover::before {
  transform: scaleX(1);
}

.services .service-item:hover .service-icon {
  transform: scale(1.1);
}

.services .service-item:hover .service-link {
  color: var(--accent-color);
}

.services .service-item:hover .service-link i {
  transform: translateX(8px);
}

.services .service-item .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.4s ease-in-out;
  flex-shrink: 0;
}

.services .service-item .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.3;
}

.services .service-item p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
  flex-grow: 1;
}

.services .service-item .service-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
  align-self: flex-start;
}

.services .service-item .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .services .service-item {
    padding: 40px 24px;
  }

  .services .service-item .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .services .service-item .service-icon i {
    font-size: 28px;
  }

  .services .service-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .services .service-item p {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 100px 0;
}

.why-us .content {
  margin-bottom: 60px;
}

.why-us .content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .why-us .content h2 {
    font-size: 2rem;
  }
}

.why-us .content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.why-us .image-wrapper {
  position: relative;
}

.why-us .image-wrapper img {
  border-radius: 8px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.4s ease-in-out;
}

.why-us .image-wrapper img:hover {
  transform: translateY(-8px);
}

.why-us .features-grid {
  margin-top: 80px;
}

.why-us .feature-item {
  display: flex;
  gap: 25px;
  padding: 40px 0;
  transition: transform 0.3s ease-in-out;
}

.why-us .feature-item:hover {
  transform: translateY(-5px);
}

.why-us .feature-item:hover .icon-wrapper {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .why-us .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 0;
  }
}

.why-us .icon-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
  .why-us .icon-wrapper {
    margin: 0 auto;
  }
}

.why-us .feature-content {
  flex: 1;
}

.why-us .feature-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .why-us .feature-content h3 {
    font-size: 1.25rem;
  }
}

.why-us .feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

@media (max-width: 992px) {
  .why-us .content {
    margin-bottom: 40px;
    text-align: center;
  }

  .why-us .features-grid {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 80px;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    margin-bottom: 60px;
    gap: 8px;
  }
}

.portfolio .portfolio-filters li {
  padding: 20px 0;
  margin: 0 40px;
  font-size: 0.95rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.4s ease;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  position: relative;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters li {
    margin: 0 20px;
    padding: 16px 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .portfolio .portfolio-filters li {
    margin: 0 12px;
    padding: 14px 0;
    font-size: 0.85rem;
  }
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--default-color);
}

.portfolio .portfolio-filters li:hover::after {
  width: 100%;
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--default-color);
  font-weight: 400;
}

.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

.portfolio .portfolio-card {
  height: 100%;
}

.portfolio .portfolio-card .project-visual {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.portfolio .portfolio-card .project-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (max-width: 768px) {
  .portfolio .portfolio-card .project-visual img {
    height: 250px;
  }
}

.portfolio .portfolio-card .project-visual .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 85, 101, 0.85), rgba(74, 85, 101, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.portfolio .portfolio-card .project-visual .project-overlay .overlay-content {
  display: flex;
  gap: 20px;
}

.portfolio .portfolio-card .project-visual .project-overlay .overlay-content a {
  width: 48px;
  height: 48px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .project-visual .project-overlay .overlay-content a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio .portfolio-card .project-visual:hover img {
  transform: scale(1.05);
}

.portfolio .portfolio-card .project-visual:hover .project-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card .project-details {
  padding: 20px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio .portfolio-card .project-details .project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.portfolio .portfolio-card .project-details .project-header .project-category {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.portfolio .portfolio-card .project-details .project-header .project-year {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 300;
}

.portfolio .portfolio-card .project-details .project-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .portfolio .portfolio-card .project-details .project-title {
    font-size: 1.35rem;
  }
}

.portfolio .portfolio-card .project-details .project-description {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.7;
  flex-grow: 1;
}

.portfolio .portfolio-card .project-details .project-meta {
  margin-top: auto;
}

.portfolio .portfolio-card .project-details .project-meta .client-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 16px;
}

.portfolio .portfolio-card .project-details .project-meta .project-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portfolio .portfolio-card .project-details .project-meta .project-scope .scope-item {
  font-size: 0.8rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 6px 0;
  position: relative;
}

.portfolio .portfolio-card .project-details .project-meta .project-scope .scope-item:not(:last-child)::after {
  content: "Â·";
  position: absolute;
  right: -8px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.portfolio .portfolio-conclusion {
  margin-top: 120px;
  text-align: center;
}

@media (max-width: 768px) {
  .portfolio .portfolio-conclusion {
    margin-top: 80px;
  }
}

.portfolio .portfolio-conclusion .conclusion-content {
  max-width: 600px;
  margin: 0 auto;
}

.portfolio .portfolio-conclusion .conclusion-content h4 {
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .portfolio .portfolio-conclusion .conclusion-content h4 {
    font-size: 1.5rem;
  }
}

.portfolio .portfolio-conclusion .conclusion-content p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
  line-height: 1.7;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

@media (max-width: 576px) {
  .portfolio .portfolio-conclusion .conclusion-content .conclusion-actions {
    flex-direction: column;
    gap: 20px;
  }
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-1px);
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action:hover i {
  transform: translateX(2px);
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action {
  color: var(--default-color);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--default-color);
  transition: width 0.3s ease;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action:hover {
  color: var(--default-color);
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action:hover::after {
  width: 100%;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  text-align: center;
  margin-bottom: 40px;
  transition: all 0.3s ease-in-out;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.team .team-member .member-img img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.team .team-member .member-info h4 {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.3;
}

.team .team-member .member-info span {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.team .team-member .member-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  padding: 0 10px;
}

.team .team-member .member-info .social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50%;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.team .team-member .member-info .social a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.team .team-member:hover .member-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .team .team-member .member-info h4 {
    font-size: 1.3rem;
  }

  .team .team-member .member-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .team .team-member .member-info h4 {
    font-size: 1.2rem;
  }

  .team .team-member .member-info p {
    padding: 0;
    font-size: 0.85rem;
  }

  .team .team-member .member-info .social {
    gap: 12px;
  }

  .team .team-member .member-info .social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 120px 0 100px;
}

.contact .info-item {
  margin-bottom: 80px;
}

.contact .info-item .info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.contact .info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .info-item .info-content h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.contact .info-item .info-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.contact .contact-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}

.contact .contact-details .detail-item:last-child {
  margin-bottom: 0;
}

.contact .contact-details .detail-item .detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-details .detail-item .detail-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.contact .contact-details .detail-item .detail-content {
  flex: 1;
}

.contact .contact-details .detail-item .detail-content .detail-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.contact .contact-details .detail-item .detail-content .detail-value {
  display: block;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.6;
}

.contact .form-header {
  margin-bottom: 48px;
}

.contact .form-header h3 {
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  margin: 0;
  letter-spacing: -0.4px;
}

.contact .form-wrapper {
  background-color: var(--surface-color);
  padding: 20px 30px;
  border-radius: 10px;
}

.contact .form-wrapper .form-group {
  margin-bottom: 32px;
}

.contact .form-wrapper .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.contact .form-wrapper .form-group input,
.contact .form-wrapper .form-group select,
.contact .form-wrapper .form-group textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact .form-wrapper .form-group input:focus,
.contact .form-wrapper .form-group select:focus,
.contact .form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .form-wrapper .form-group input::placeholder,
.contact .form-wrapper .form-group select::placeholder,
.contact .form-wrapper .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .form-wrapper .form-group select {
  cursor: pointer;
}

.contact .form-wrapper .form-group select option {
  padding: 10px;
}

.contact .form-wrapper .form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact .form-wrapper .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.contact .form-wrapper .submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.contact .form-wrapper .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .form-wrapper .submit-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0 60px;
  }

  .contact .info-item {
    margin-bottom: 50px;
  }

  .contact .info-item .info-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }

  .contact .info-item .info-icon i {
    font-size: 20px;
  }

  .contact .info-item .info-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .contact .contact-details .detail-item {
    margin-bottom: 32px;
  }

  .contact .form-header {
    margin-bottom: 32px;
  }

  .contact .form-header h3 {
    font-size: 24px;
  }

  .contact .modern-form .form-group {
    margin-bottom: 24px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 6rem;
  --content-spacing: 4rem;
}

.portfolio-details .project-intro {
  margin-bottom: var(--section-spacing);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-details .project-intro .intro-content .project-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.portfolio-details .project-intro .intro-content .project-meta .project-type,
.portfolio-details .project-intro .intro-content .project-meta .project-year {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  position: relative;
}

.portfolio-details .project-intro .intro-content .project-meta .project-type::after {
  content: "â€¢";
  position: absolute;
  right: -1rem;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.portfolio-details .project-intro .intro-content .project-title {
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.portfolio-details .project-intro .intro-content .project-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-details .project-showcase {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .project-showcase .showcase-slider {
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-details .project-showcase .showcase-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .project-showcase .showcase-slider .swiper-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.portfolio-details .project-showcase .showcase-slider .swiper-pagination {
  bottom: 30px;
}

.portfolio-details .project-showcase .showcase-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.portfolio-details .project-showcase .showcase-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
  transform: scale(1.2);
}

.portfolio-details .project-details-grid {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .project-details-grid .project-narrative h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.portfolio-details .project-details-grid .project-narrative p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.portfolio-details .project-details-grid .project-narrative p:last-child {
  margin-bottom: 0;
}

.portfolio-details .project-details-grid .project-info {
  padding-left: 3rem;
}

.portfolio-details .project-details-grid .project-info .info-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .project-details-grid .project-info .info-block:last-child {
  border-bottom: none;
}

.portfolio-details .project-details-grid .project-info .info-block .info-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.5rem;
}

.portfolio-details .project-details-grid .project-info .info-block .info-value {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--heading-color);
}

.portfolio-details .solution-approach {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .solution-approach .approach-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.portfolio-details .solution-approach .approach-header h2 {
  font-size: 2.75rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.portfolio-details .solution-approach .approach-header p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.portfolio-details .solution-approach .approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.portfolio-details .solution-approach .approach-steps .step-item .step-number {
  font-size: 3rem;
  font-weight: 200;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  margin-bottom: 1rem;
  line-height: 1;
}

.portfolio-details .solution-approach .approach-steps .step-item h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .solution-approach .approach-steps .step-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.portfolio-details .project-gallery {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .project-gallery h2 {
  font-size: 2.75rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.portfolio-details .project-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.portfolio-details .project-gallery .gallery-grid .gallery-item {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

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

.portfolio-details .project-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-details .project-gallery .gallery-grid .gallery-item:hover {
  transform: translateY(-8px);
}

.portfolio-details .project-gallery .gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}

.portfolio-details .technologies-used {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .technologies-used h2 {
  font-size: 2.75rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.portfolio-details .technologies-used p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.portfolio-details .technologies-used .tech-stack .tech-group {
  margin-bottom: 2.5rem;
}

.portfolio-details .technologies-used .tech-stack .tech-group:last-child {
  margin-bottom: 0;
}

.portfolio-details .technologies-used .tech-stack .tech-group h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .technologies-used .tech-stack .tech-group .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.portfolio-details .technologies-used .tech-stack .tech-group .tech-tags .tech-tag {
  padding: 0.5rem 1.25rem;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.portfolio-details .technologies-used .tech-stack .tech-group .tech-tags .tech-tag:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.portfolio-details .project-outcomes {
  background-color: color-mix(in srgb, var(--surface-color), transparent 60%);
  padding: 4rem 3rem;
  border-radius: 12px;
  margin-bottom: var(--section-spacing);
}

.portfolio-details .project-outcomes .outcomes-header {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-details .project-outcomes .outcomes-header h2 {
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.portfolio-details .project-outcomes .outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.portfolio-details .project-outcomes .outcomes-grid .outcome-card {
  text-align: center;
}

.portfolio-details .project-outcomes .outcomes-grid .outcome-card .outcome-stat {
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.portfolio-details .project-outcomes .outcomes-grid .outcome-card .outcome-label {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.4;
}

.portfolio-details .project-navigation {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 3rem;
}

.portfolio-details .project-navigation .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-details .project-navigation .nav-container .nav-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-details .project-navigation .nav-container .nav-item.prev,
.portfolio-details .project-navigation .nav-container .nav-item.next {
  color: var(--heading-color);
}

.portfolio-details .project-navigation .nav-container .nav-item.prev .nav-label,
.portfolio-details .project-navigation .nav-container .nav-item.next .nav-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.25rem;
}

.portfolio-details .project-navigation .nav-container .nav-item.prev .nav-title,
.portfolio-details .project-navigation .nav-container .nav-item.next .nav-title {
  font-size: 1.125rem;
  font-weight: 400;
}

.portfolio-details .project-navigation .nav-container .nav-item.prev:hover,
.portfolio-details .project-navigation .nav-container .nav-item.next:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.portfolio-details .project-navigation .nav-container .nav-item.next {
  text-align: right;
}

.portfolio-details .project-navigation .nav-container .nav-item.center {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 6px;
  color: var(--heading-color);
  font-weight: 400;
  transition: all 0.3s ease;
}

.portfolio-details .project-navigation .nav-container .nav-item.center i {
  font-size: 1.125rem;
}

.portfolio-details .project-navigation .nav-container .nav-item.center:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 1200px) {
  .portfolio-details .project-details-grid .project-info {
    padding-left: 2rem;
  }

  .portfolio-details .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .portfolio-details .gallery-grid .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 992px) {
  .portfolio-details .project-intro .intro-content .project-title {
    font-size: 3rem;
  }

  .portfolio-details .project-details-grid .project-info {
    padding-left: 0;
    margin-top: 3rem;
  }

  .portfolio-details .approach-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .portfolio-details .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

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

@media (max-width: 768px) {
  .portfolio-details {
    --section-spacing: 4rem;
  }

  .portfolio-details .project-intro .intro-content .project-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .portfolio-details .project-intro .intro-content .project-meta .project-type::after {
    display: none;
  }

  .portfolio-details .project-intro .intro-content .project-title {
    font-size: 2.5rem;
  }

  .portfolio-details .project-intro .intro-content .project-description {
    font-size: 1.125rem;
  }

  .portfolio-details .project-showcase .showcase-slider .swiper-slide img {
    height: 400px;
  }

  .portfolio-details .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .portfolio-details .gallery-grid .gallery-item.featured {
    grid-column: span 1;
  }

  .portfolio-details .project-outcomes {
    padding: 3rem 2rem;
  }

  .portfolio-details .project-outcomes .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-details .project-navigation .nav-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .portfolio-details .project-navigation .nav-container .nav-item.prev,
  .portfolio-details .project-navigation .nav-container .nav-item.next {
    text-align: center;
  }

  .portfolio-details .project-navigation .nav-container .nav-item.center {
    order: -1;
  }
}

@media (max-width: 576px) {
  .portfolio-details .project-outcomes {
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
  padding: 80px 0;
}

.service-details .service-content .service-hero {
  margin-bottom: 60px;
}

.service-details .service-content .service-hero .service-image {
  border-radius: 8px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-content .service-description {
  margin-bottom: 80px;
}

.service-details .service-content .service-description .service-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.3;
}

.service-details .service-content .service-description .lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.service-details .service-content .service-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-content .service-features {
  margin-bottom: 80px;
}

.service-details .service-content .service-features h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.service-details .service-content .service-features .feature-item .feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details .service-content .service-features .feature-item .feature-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.service-details .service-content .service-features .feature-item .feature-content h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-details .service-content .service-features .feature-item .feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details .service-content .service-process h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.service-details .service-content .service-process .process-timeline .process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.service-details .service-content .service-process .process-timeline .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .service-content .service-process .process-timeline .process-step .step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
}

.service-details .service-content .service-process .process-timeline .process-step .step-content {
  flex: 1;
}

.service-details .service-content .service-process .process-timeline .process-step .step-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-details .service-content .service-process .process-timeline .process-step .step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details .service-sidebar .sidebar-widget {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .sidebar-widget h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 24px;
}

.service-details .service-sidebar .service-info .service-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .service-sidebar .service-info .service-details-list li {
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-details .service-sidebar .service-info .service-details-list li:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info .service-details-list li strong {
  color: var(--heading-color);
  font-weight: 500;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item i {
  font-size: 16px;
  width: 20px;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item span {
  font-size: 0.95rem;
}

.service-details .service-sidebar .cta-widget {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
}

.service-details .service-sidebar .cta-widget .cta-content {
  text-align: center;
}

.service-details .service-sidebar .cta-widget .cta-content h4 {
  color: var(--contrast-color);
  margin-bottom: 16px;
}

.service-details .service-sidebar .cta-widget .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-details .service-sidebar .cta-widget .cta-content .btn-cta {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .cta-widget .cta-content .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-item:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  width: 24px;
}

.service-details .service-sidebar .contact-info .contact-item div strong {
  display: block;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.service-details .service-sidebar .contact-info .contact-item div span {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .service-details {
    padding: 60px 0;
  }

  .service-details .service-content .service-hero {
    margin-bottom: 40px;
  }

  .service-details .service-content .service-hero .service-image {
    height: 300px;
  }

  .service-details .service-content .service-description {
    margin-bottom: 60px;
  }

  .service-details .service-content .service-description .service-title {
    font-size: 2rem;
  }

  .service-details .service-content .service-description .lead {
    font-size: 1.1rem;
  }

  .service-details .service-content .service-features,
  .service-details .service-content .service-process {
    margin-bottom: 60px;
  }

  .service-details .service-content .service-features h3,
  .service-details .service-content .service-process h3 {
    font-size: 1.7rem;
  }

  .service-details .service-content .process-timeline .process-step {
    gap: 16px;
  }

  .service-details .service-content .process-timeline .process-step:not(:last-child)::after {
    left: 19px;
  }

  .service-details .service-content .process-timeline .process-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .service-details .service-sidebar {
    margin-top: 40px;
  }

  .service-details .service-sidebar .sidebar-widget {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "â€¢";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-content {
  font-size: 16px;
  line-height: 1.7;
}

.privacy .privacy-content .last-updated {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.privacy .privacy-content .last-updated p {
  margin: 0;
  color: var(--heading-color);
}

.privacy .privacy-content .privacy-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .privacy-section h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.privacy .privacy-content .privacy-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.privacy .privacy-content .privacy-section h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.privacy .privacy-content .privacy-section h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section ul,
.privacy .privacy-content .privacy-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy .privacy-content .privacy-section ul li,
.privacy .privacy-content .privacy-section ol li {
  margin-bottom: 10px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .info-box h4 {
  color: var(--heading-color);
  margin-top: 0;
}

.privacy .privacy-content .privacy-section .highlight-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--brand-black) 20%));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--contrast-color);
  margin: 40px 0;
}

.privacy .privacy-content .privacy-section .highlight-box i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .highlight-box h4 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .highlight-box p {
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}

.privacy .privacy-content .privacy-section .security-measures {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy .privacy-content .privacy-section .security-measures .measure-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item h5 {
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .rights-list {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .rights-list .right-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.privacy .privacy-content .privacy-section .rights-list .right-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 20px;
  margin-top: 5px;
  min-width: 24px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div {
  flex: 1;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div h5 {
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .cookie-types {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .cookie-types h4 {
  margin-bottom: 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table {
  margin: 0;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead th {
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 15px 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 15px 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.privacy .privacy-content .contact-section {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .contact-section h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.privacy .privacy-content .contact-section h3:after {
  background: var(--accent-color);
}

.privacy .privacy-content .contact-section .contact-info {
  margin-top: 30px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 18px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item span {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .privacy .privacy-content {
    font-size: 15px;
  }

  .privacy .privacy-content .privacy-section h3 {
    font-size: 24px;
  }

  .privacy .privacy-content .privacy-section h4 {
    font-size: 20px;
  }

  .privacy .privacy-content .privacy-section .security-measures .row>div {
    margin-bottom: 20px;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item {
    flex-direction: column;
    text-align: center;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}

.error-404 .error-content {
  margin-bottom: 80px;
}

.error-404 .error-content .error-number {
  font-size: 8rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-number {
    font-size: 6rem;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-number {
    font-size: 4.5rem;
  }
}

.error-404 .error-content .error-title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-title {
    font-size: 2rem;
  }
}

.error-404 .error-content .error-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

.error-404 .error-content .error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.error-404 .error-content .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-content .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .error-404 .error-content .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-404 .error-content .error-actions .btn-primary,
  .error-404 .error-content .error-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.error-404 .error-content .search-section .search-label {
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.error-404 .error-content .search-section .search-form {
  max-width: 400px;
  margin: 0 auto;
}

.error-404 .error-content .search-section .search-form .search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input {
  width: 100%;
  padding: 16px 60px 16px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn {
  position: absolute;
  right: 8px;
  background: var(--accent-color);
  border: none;
  border-radius: 6px;
  padding: 12px;
  color: var(--contrast-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn i {
  font-size: 1rem;
}

.error-404 .helpful-links .links-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .error-404 .helpful-links .links-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
}

.error-404 .helpful-links .link-item {
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-10px);
}

.error-404 .helpful-links .link-item .link-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.error-404 .helpful-links .link-item h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.error-404 .helpful-links .link-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.error-404 .helpful-links .link-item .link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  gap: 12px;
}

.error-404 .helpful-links .link-item .link-cta i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover i {
  transform: translateX(3px);
}

.error-404 .helpful-links .link-item:hover .link-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .helpful-links .link-item {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
    min-height: auto;
  }

  .error-404 .error-content {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-title {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.inner-page {
  --about-green: var(--brand-primary);
  --about-green-soft: var(--brand-muted);
  --about-paper: var(--brand-background);
  --about-line: rgba(74, 85, 101, 0.13);
  --about-muted: var(--brand-muted);
  background: #ffffff;
  overflow-x: hidden;
}

.inner-page:not(.scrolled) .header {
  --nav-color: var(--brand-muted);
  --nav-hover-color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(74, 85, 101, 0.09);
}

.inner-page:not(.scrolled) .header .logo img {
  filter: none;
}

.inner-page:not(.scrolled) .mobile-nav-toggle {
  color: var(--brand-primary);
}

.inner-page h1,
.inner-page h2,
.inner-page h3,
.inner-page h4,
.inner-page h5,
.inner-page h6 {
  font-family: var(--heading-font);
  font-style: normal;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.4;
}

.about-kicker::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 1px;
  background: currentColor;
}

.about-kicker.dark {
  color: var(--brand-muted);
}

.inner-page-title {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  background: var(--brand-background);
}

.inner-page-title-image,
.inner-page-title-overlay,
.inner-page-title-grid {
  position: absolute;
  inset: 0;
}

.inner-page-title-image {
  right: 0;
  left: auto;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 12%, var(--brand-primary) 28%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 12%, var(--brand-primary) 28%);
}

.inner-page-title-overlay {
  right: 0;
  left: auto;
  width: 62%;
  background:
    linear-gradient(90deg, var(--brand-background) 0%, rgba(242, 242, 242, 0.82) 20%, rgba(242, 242, 242, 0.16) 58%, rgba(242, 242, 242, 0.03) 100%),
    linear-gradient(0deg, rgba(74, 85, 101, 0.12), rgba(74, 85, 101, 0.08));
}

.inner-page-title-grid {
  right: 48%;
  opacity: 0.54;
  background-image:
    linear-gradient(rgba(74, 85, 101, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 85, 101, 0.08) 1px, transparent 1px);
  background-size: 66px 66px;
}

.inner-page-title .container {
  z-index: 2;
}

.inner-page-title-content {
  position: relative;
  margin-top: 184px;
  padding: 0 0 3px 27px;
  border-left: 2px solid var(--brand-muted);
}

.inner-page-title-code {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 2.2px;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}

.about-breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.about-breadcrumb li+li::before {
  content: "/";
  margin: 0 15px;
  color: var(--brand-muted);
}

.about-breadcrumb a {
  color: var(--brand-muted);
}

.about-breadcrumb a:hover {
  color: var(--brand-muted);
}

.inner-page-title h1 {
  margin: 0 0 13px;
  color: var(--brand-primary);
  font-size: clamp(45px, 4.4vw, 62px);
  font-weight: 650;
  letter-spacing: -1.9px;
  line-height: 1;
}

.inner-page-title p {
  max-width: 720px;
  margin: 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.7;
}

.company-profile {
  overflow: hidden;
  padding: 118px 0 124px;
  background: #ffffff;
}

.company-visual {
  position: relative;
  min-height: 0;
  margin: 0 25px 0 0;
  padding: 0 0 22px 22px;
  border-left: 1px solid rgba(74, 85, 101, 0.22);
  border-bottom: 1px solid rgba(74, 85, 101, 0.22);
}

.company-visual-main {
  display: block;
  width: 100%;
  height: 510px;
  object-fit: cover;
  filter: saturate(0.74);
}

.company-copy {
  padding-left: 46px;
}

.company-copy h2,
.about-principles h2,
.about-expertise h2 {
  margin: 24px 0;
  color: var(--about-green);
  font-size: clamp(37px, 3.6vw, 54px);
  font-weight: 650;
  letter-spacing: -1.8px;
  line-height: 1.08;
}

.company-copy h2 em {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 650;
  letter-spacing: -1.8px;
}

.company-copy p {
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.82;
}

.company-copy .company-lead {
  color: var(--brand-muted);
  font-size: 18px;
  line-height: 1.72;
}

.company-signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.company-signature span {
  width: 68px;
  height: 1px;
  background: var(--brand-muted);
}

.company-signature p {
  margin: 0;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 13px;
  letter-spacing: 1.4px;
  line-height: 1.6;
  text-transform: uppercase;
}

.company-signature strong {
  color: var(--about-green);
  font-weight: 650;
}

.about-principles {
  padding: 118px 0 124px;
  background: var(--brand-background);
}

.about-principles h2,
.about-expertise h2 {
  margin-bottom: 0;
}

.principles-intro,
.about-expertise .row:first-child p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.78;
}

.principles-grid {
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
}

.principle-item {
  position: relative;
  overflow: hidden;
  min-height: 342px;
  height: 100%;
  padding: 36px 34px 30px;
  border-right: 1px solid var(--about-line);
  background: transparent;
  transition: background-color 0.3s ease;
}

.principle-item::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.principles-grid>div:first-child .principle-item {
  border-left: 1px solid var(--about-line);
}

.principle-item:hover {
  background: rgba(255, 255, 255, 0.42);
}

.principle-item:hover::before {
  transform: scaleX(1);
}

.principle-no {
  display: block;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}

.principle-item>i:not(.principle-watermark) {
  display: block;
  margin: 51px 0 28px;
  color: var(--brand-primary);
  font-size: 38px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.principle-item .principle-watermark {
  position: absolute;
  right: -64px;
  bottom: 14px;
  color: var(--brand-muted);
  font-size: 136px;
  line-height: 1;
  opacity: 0.035;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.principle-item h3 {
  color: var(--about-green);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.principle-item p {
  max-width: 290px;
  margin: 14px 0 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.72;
}

.principle-item:hover .principle-no,
.principle-item:hover p {
  color: var(--brand-muted);
}

.principle-item:hover>i:not(.principle-watermark) {
  color: var(--brand-primary);
  transform: translateY(-4px);
}

.principle-item:hover .principle-watermark {
  opacity: 0.06;
  transform: translateX(-6px);
}

.principle-item:hover h3 {
  color: var(--brand-primary);
}

.working-model {
  position: relative;
  overflow: hidden;
  padding: 124px 0;
  background: #ffffff;
  border-top: 1px solid rgba(74, 85, 101, 0.1);
  border-bottom: 1px solid rgba(74, 85, 101, 0.1);
}

.working-model-grid {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(74, 85, 101, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 85, 101, 0.06) 1px, transparent 1px);
  background-size: 84px 84px;
}

.working-model-media {
  position: relative;
  min-height: 650px;
  height: 100%;
  margin-right: 58px;
}

.working-model-media::before {
  content: "";
  position: absolute;
  top: -26px;
  right: -26px;
  bottom: 28px;
  left: 28px;
  border: 1px solid rgba(74, 85, 101, 0.18);
}

.working-model-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  filter: saturate(0.68) brightness(0.92);
}

.working-model-content {
  padding: 28px 0 0 34px;
}

.working-model-content h2 {
  margin: 24px 0 44px;
  color: var(--brand-primary);
  font-size: clamp(39px, 4vw, 58px);
  font-weight: 650;
  letter-spacing: -2px;
  line-height: 1.08;
}

.working-model-content h2 em {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 650;
  letter-spacing: -2px;
}

.work-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 24px;
  padding: 25px 0 23px;
  border-top: 1px solid rgba(74, 85, 101, 0.14);
}

.work-step:last-child {
  border-bottom: 1px solid rgba(74, 85, 101, 0.14);
}

.work-step>span {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.work-step h3 {
  margin: -4px 0 9px;
  color: var(--brand-primary);
  font-size: 20px;
  font-weight: 550;
  letter-spacing: -0.3px;
}

.work-step p {
  max-width: 580px;
  margin: 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.72;
}

.about-expertise {
  padding: 118px 0 124px;
  background: var(--brand-background);
}

.expertise-grid {
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
}

.expertise-item {
  position: relative;
  min-height: 342px;
  height: 100%;
  padding: 36px 28px 30px;
  overflow: hidden;
  border-right: 1px solid var(--about-line);
  background: transparent;
  transition: background-color 0.3s ease;
}

.expertise-grid>div:first-child .expertise-item {
  border-left: 1px solid var(--about-line);
}

.expertise-item::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.expertise-item:hover {
  background: rgba(255, 255, 255, 0.42);
}

.expertise-item:hover::before {
  transform: scaleX(1);
}

.expertise-item span {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
}

.expertise-item h3 {
  max-width: 190px;
  margin: 0 0 14px;
  color: var(--about-green);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.expertise-item p {
  max-width: 240px;
  margin: 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.72;
}

.expertise-item>i:not(.expertise-watermark) {
  display: block;
  margin: 51px 0 28px;
  color: var(--brand-primary);
  font-size: 38px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.expertise-item .expertise-watermark {
  position: absolute;
  right: -64px;
  bottom: 14px;
  color: var(--brand-muted);
  font-size: 136px;
  line-height: 1;
  opacity: 0.035;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.expertise-item:hover>i:not(.expertise-watermark) {
  color: var(--brand-primary);
  transform: translateY(-4px);
}

.expertise-item:hover .expertise-watermark {
  opacity: 0.06;
  transform: translateX(-6px);
}

.about-statement {
  padding: 112px 0 116px;
  background: #fff;
}

.statement-inner {
  position: relative;
  padding: 22px 0;
  text-align: center;
}

.statement-inner::before,
.statement-inner::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  margin: 0 auto;
  background: var(--brand-muted);
}

.statement-index {
  display: block;
  margin: 24px 0 30px;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
}

.statement-inner p {
  max-width: 980px;
  margin: 0 auto 30px;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: clamp(25px, 2.7vw, 39px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.4;
}

.statement-inner strong {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -1px;
}

.statement-brand {
  display: block;
  margin: 0 0 24px;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 3px;
}

.about-contact {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--brand-background);
  border-top: 1px solid rgba(74, 85, 101, 0.11);
}

.about-contact h2 {
  margin: 23px 0 0;
  color: var(--brand-primary);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 650;
  letter-spacing: -2px;
  line-height: 1.08;
}

.about-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding: 18px 0 14px;
  color: var(--brand-muted);
  border-bottom: 1px solid rgba(74, 85, 101, 0.46);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-contact-link i {
  font-size: 18px;
  transition: 0.3s ease;
}

.about-contact-link:hover {
  color: var(--brand-muted);
  border-color: rgba(74, 85, 101, 0.24);
}

.about-contact-link:hover i {
  transform: translate(4px, -4px);
}

@media (max-width: 991px) {
  .inner-page-title {
    min-height: 425px;
  }

  .inner-page-title-content {
    margin-top: 170px;
  }

  .company-profile,
  .about-principles,
  .about-expertise {
    padding: 100px 0;
  }

  .company-visual {
    max-width: 680px;
    margin-right: 0;
  }

  .company-copy {
    padding: 35px 0 0;
  }

  .working-model {
    padding: 100px 0;
  }

  .working-model-media {
    min-height: 500px;
    margin: 0 26px 45px 0;
  }

  .working-model-media img {
    min-height: 500px;
  }

  .working-model-content {
    padding: 25px 0 0;
  }

  .about-contact {
    padding: 88px 0;
  }
}

@media (max-width: 767px) {
  .inner-page-title {
    min-height: 390px;
  }

  .inner-page-title-image {
    width: 76%;
    opacity: 0.72;
    object-position: 57% center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 22%, var(--brand-primary) 46%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 22%, var(--brand-primary) 46%);
  }

  .inner-page-title-overlay {
    width: 88%;
    background: linear-gradient(90deg, var(--brand-background) 0%, rgba(242, 242, 242, 0.94) 34%, rgba(242, 242, 242, 0.48) 72%, rgba(242, 242, 242, 0.22) 100%);
  }

  .inner-page-title-grid {
    right: 0;
    opacity: 0.4;
    background-size: 54px 54px;
  }

  .inner-page-title-content {
    margin-top: 143px;
    padding: 0 0 3px 16px;
  }

  .inner-page-title-code {
    margin-bottom: 11px;
    font-size: 9px;
  }

  .about-breadcrumb {
    margin-bottom: 15px;
  }

  .about-breadcrumb li {
    font-size: 11px;
  }

  .about-breadcrumb li+li::before {
    margin: 0 10px;
  }

  .inner-page-title h1 {
    margin-bottom: 11px;
    font-size: 45px;
    letter-spacing: -1.8px;
  }

  .inner-page-title p {
    max-width: 335px;
    font-size: 14px;
    line-height: 1.58;
  }

  .company-profile,
  .about-principles,
  .about-expertise {
    padding: 78px 0;
  }

  .company-visual {
    min-height: 0;
    margin-right: 0;
    padding: 0 0 14px 14px;
  }

  .company-visual-main {
    height: 330px;
  }

  .company-copy {
    padding-top: 15px;
  }

  .company-copy h2,
  .about-principles h2,
  .about-expertise h2 {
    font-size: 36px;
    letter-spacing: -1.3px;
    line-height: 1.12;
  }

  .company-copy .company-lead {
    font-size: 17px;
  }

  .principle-item {
    min-height: auto;
    padding: 27px 25px 25px;
    border-left: 1px solid var(--about-line);
    border-bottom: 1px solid var(--about-line);
  }

  .principles-grid>div:last-child .principle-item {
    border-bottom: 0;
  }

  .principle-item>i:not(.principle-watermark) {
    margin: 32px 0 19px;
  }

  .principle-item .principle-watermark {
    right: -48px;
    bottom: 12px;
    font-size: 104px;
  }

  .principle-item:hover {
    transform: none;
  }

  .working-model {
    padding: 78px 0;
  }

  .working-model-media {
    min-height: 410px;
    margin: 0 15px 30px 0;
  }

  .working-model-media img {
    min-height: 410px;
  }

  .working-model-content h2 {
    font-size: 38px;
    letter-spacing: -1.4px;
  }

  .work-step {
    gap: 11px;
    grid-template-columns: 35px 1fr;
  }

  .expertise-item {
    min-height: auto;
    padding: 27px 25px 25px;
    border-left: 1px solid var(--about-line);
    border-bottom: 1px solid var(--about-line);
  }

  .expertise-grid>div:last-child .expertise-item {
    border-bottom: 0;
  }

  .expertise-item>i:not(.expertise-watermark) {
    margin: 32px 0 19px;
  }

  .expertise-item .expertise-watermark {
    right: -48px;
    bottom: 12px;
    font-size: 104px;
  }

  .about-statement {
    padding: 82px 0 86px;
  }

  .about-contact {
    padding: 78px 0;
  }

  .about-contact h2 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .about-contact-link {
    margin-top: 14px;
  }
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-intro {
  padding: 118px 0 88px;
  background: #ffffff;
}

.services-intro h2,
.services-process-copy h2,
.services-standards h2 {
  margin: 24px 0 0;
  color: var(--brand-primary);
  font-size: clamp(37px, 3.6vw, 54px);
  font-weight: 650;
  letter-spacing: -1.8px;
  line-height: 1.08;
}

.services-intro .col-lg-5>p,
.services-standards .col-lg-5>p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.78;
}

.services-intro-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 64px;
  padding: 20px 0;
  border-top: 1px solid rgba(74, 85, 101, 0.15);
  border-bottom: 1px solid rgba(74, 85, 101, 0.15);
}

.services-intro-line span {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 2px;
}

.services-intro-line p {
  margin: 0;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.services-list {
  padding: 28px 0 118px;
  background: var(--brand-background);
}

.services-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 20px;
}

.services-list-heading p {
  margin: 0;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 2px;
}

.service-record-no {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 2px;
}

.services-card-grid {
  border-top: 1px solid rgba(74, 85, 101, 0.15);
  padding-top: 24px;
}

.service-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(74, 85, 101, 0.15);
  background: #ffffff;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.service-card:hover {
  border-color: rgba(74, 85, 101, 0.28);
  box-shadow: 0 15px 35px rgba(74, 85, 101, 0.06);
  transform: translateY(-6px);
}

.service-card-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 245px;
  overflow: hidden;
  background:
    linear-gradient(rgba(74, 85, 101, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 85, 101, 0.055) 1px, transparent 1px),
    var(--brand-background);
  background-size: 34px 34px;
  border-bottom: 1px solid rgba(74, 85, 101, 0.13);
}

.service-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-media span {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.8px;
}

.service-card-body {
  padding: 28px 28px 26px;
}

.service-card h2 {
  margin: 34px 0 14px;
  color: var(--brand-primary);
  font-size: clamp(25px, 2.3vw, 33px);
  font-weight: 650;
  letter-spacing: -1px;
  line-height: 1.14;
}

.service-card p {
  min-height: 104px;
  margin: 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.74;
}

.service-card small {
  display: inline-block;
  margin-top: 22px;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 1.8px;
}

.services-process {
  padding: 122px 0 126px;
  background: #ffffff;
  border-top: 1px solid rgba(74, 85, 101, 0.09);
  border-bottom: 1px solid rgba(74, 85, 101, 0.09);
}

.services-process-media {
  position: relative;
  margin: 0 32px 0 0;
  padding: 0 0 20px 20px;
  border-left: 1px solid rgba(74, 85, 101, 0.2);
  border-bottom: 1px solid rgba(74, 85, 101, 0.2);
}

.services-process-media img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: saturate(0.72);
}

.services-process-copy {
  padding-left: 28px;
}

.services-process-copy>p {
  margin: 25px 0 0;
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.82;
}

.services-process-points {
  margin-top: 36px;
  border-top: 1px solid rgba(74, 85, 101, 0.15);
}

.services-process-points div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(74, 85, 101, 0.15);
}

.services-process-points span {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.4px;
}

.services-process-points strong {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
}

.services-standards {
  padding: 118px 0 124px;
  background: var(--brand-background);
}

.services-standard-grid {
  border-top: 1px solid rgba(74, 85, 101, 0.14);
  border-bottom: 1px solid rgba(74, 85, 101, 0.14);
}

.services-standard-grid article {
  min-height: 264px;
  height: 100%;
  padding: 31px 30px 28px;
  border-right: 1px solid rgba(74, 85, 101, 0.14);
  transition: background-color 0.32s ease;
}

.services-standard-grid>div:first-child article {
  border-left: 1px solid rgba(74, 85, 101, 0.14);
}

.services-standard-grid article:hover {
  background: #ffffff;
}

.services-standard-grid span {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.8px;
}

.services-standard-grid h3 {
  margin: 55px 0 15px;
  color: var(--brand-primary);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.5px;
}

.services-standard-grid p {
  max-width: 300px;
  margin: 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.72;
}

@media (max-width: 991px) {
  .services-intro,
  .services-standards {
    padding: 94px 0;
  }

  .services-list {
    padding-bottom: 94px;
  }

  .service-card p {
    min-height: auto;
  }

  .services-process {
    padding: 96px 0;
  }

  .services-process-media {
    max-width: 690px;
    margin-right: 0;
  }

  .services-process-copy {
    padding: 24px 0 0;
  }
}

@media (max-width: 767px) {
  .services-intro,
  .services-standards {
    padding: 76px 0;
  }

  .services-intro h2,
  .services-process-copy h2,
  .services-standards h2 {
    font-size: 36px;
    letter-spacing: -1.3px;
    line-height: 1.12;
  }

  .services-intro-line {
    display: block;
    margin-top: 42px;
  }

  .services-intro-line p {
    margin-top: 10px;
    line-height: 1.65;
  }

  .services-list {
    padding: 20px 0 76px;
  }

  .service-card-media {
    min-height: 205px;
  }

  .service-card-body {
    padding: 23px 22px 22px;
  }

  .service-card h2 {
    margin-top: 27px;
    font-size: 26px;
  }

  .service-card small {
    margin-top: 18px;
  }

  .services-process {
    padding: 76px 0;
  }

  .services-process-media {
    margin-right: 0;
    padding: 0 0 14px 14px;
  }

  .services-process-media img {
    height: 365px;
  }

  .services-standard-grid article {
    min-height: auto;
    padding: 25px 24px 24px;
    border-left: 1px solid rgba(74, 85, 101, 0.14);
    border-bottom: 1px solid rgba(74, 85, 101, 0.14);
  }

  .services-standard-grid>div:last-child article {
    border-bottom: 0;
  }

  .services-standard-grid h3 {
    margin-top: 34px;
  }
}

/*--------------------------------------------------------------
# Service Areas Page
--------------------------------------------------------------*/
.areas-intro {
  padding: 116px 0 88px;
  background: #ffffff;
}

.areas-intro h2,
.areas-scope h2 {
  margin: 24px 0 0;
  color: var(--brand-primary);
  font-size: clamp(37px, 3.6vw, 54px);
  font-weight: 650;
  letter-spacing: -1.8px;
  line-height: 1.08;
}

.areas-intro .col-lg-5>p,
.areas-scope .col-lg-5>p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.78;
}

.areas-catalog {
  padding: 28px 0 124px;
  background: var(--brand-background);
}

.areas-catalog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(74, 85, 101, 0.15);
}

.areas-catalog-heading p {
  margin: 0;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 2px;
}

.areas-catalog .row {
  padding-top: 24px;
}

.area-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(74, 85, 101, 0.15);
  background: #ffffff;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.area-card:hover {
  border-color: rgba(74, 85, 101, 0.28);
  box-shadow: 0 15px 35px rgba(74, 85, 101, 0.06);
  transform: translateY(-6px);
}

.area-card-media {
  height: 208px;
  overflow: hidden;
  border-bottom: 1px solid rgba(74, 85, 101, 0.13);
  background: var(--brand-background);
}

.area-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 0.45s ease;
}

.area-card:hover .area-card-media img {
  transform: scale(1.045);
}

.area-card-body {
  padding: 25px 25px 24px;
}

.area-record-no {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.8px;
}

.area-card h2 {
  margin: 27px 0 13px;
  color: var(--brand-primary);
  font-size: 27px;
  font-weight: 650;
  letter-spacing: -0.8px;
  line-height: 1.14;
}

.area-card p {
  min-height: 100px;
  margin: 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.72;
}

.area-card ul {
  margin: 20px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid rgba(74, 85, 101, 0.13);
  list-style: none;
}

.area-card li {
  position: relative;
  padding: 7px 0 7px 15px;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.2px;
  line-height: 1.45;
}

.area-card li::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--brand-muted);
  content: "";
}

.areas-scope {
  padding: 118px 0 124px;
  background: #ffffff;
  border-top: 1px solid rgba(74, 85, 101, 0.09);
}

.areas-scope-grid {
  border-top: 1px solid rgba(74, 85, 101, 0.14);
  border-bottom: 1px solid rgba(74, 85, 101, 0.14);
}

.areas-scope-grid article {
  min-height: 255px;
  height: 100%;
  padding: 31px 30px 28px;
  border-right: 1px solid rgba(74, 85, 101, 0.14);
  transition: background-color 0.32s ease;
}

.areas-scope-grid>div:first-child article {
  border-left: 1px solid rgba(74, 85, 101, 0.14);
}

.areas-scope-grid article:hover {
  background: var(--brand-background);
}

.areas-scope-grid span {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.8px;
}

.areas-scope-grid h3 {
  margin: 55px 0 15px;
  color: var(--brand-primary);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.5px;
}

.areas-scope-grid p {
  max-width: 300px;
  margin: 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.72;
}

@media (max-width: 991px) {
  .areas-intro,
  .areas-scope {
    padding: 94px 0;
  }

  .areas-catalog {
    padding-bottom: 94px;
  }

  .area-card p {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .areas-intro,
  .areas-scope {
    padding: 76px 0;
  }

  .areas-intro h2,
  .areas-scope h2 {
    font-size: 36px;
    letter-spacing: -1.3px;
    line-height: 1.12;
  }

  .areas-catalog {
    padding: 20px 0 76px;
  }

  .area-card-media {
    height: 195px;
  }

  .area-card-body {
    padding: 22px 21px 21px;
  }

  .area-card h2 {
    margin-top: 24px;
    font-size: 25px;
  }

  .areas-scope-grid article {
    min-height: auto;
    padding: 25px 24px 24px;
    border-left: 1px solid rgba(74, 85, 101, 0.14);
    border-bottom: 1px solid rgba(74, 85, 101, 0.14);
  }

  .areas-scope-grid>div:last-child article {
    border-bottom: 0;
  }

  .areas-scope-grid h3 {
    margin-top: 34px;
  }
}

/*--------------------------------------------------------------
# Approach Page
--------------------------------------------------------------*/
.approach-intro {
  padding: 116px 0 90px;
  background: #ffffff;
}

.approach-intro h2,
.approach-overview-copy h2,
.approach-stages h2,
.approach-standards h2 {
  margin: 24px 0 0;
  color: var(--brand-primary);
  font-size: clamp(37px, 3.6vw, 54px);
  font-weight: 650;
  letter-spacing: -1.8px;
  line-height: 1.08;
}

.approach-intro .col-lg-5>p,
.approach-stages .col-lg-5>p,
.approach-standards .col-lg-5>p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.78;
}

.approach-overview {
  padding: 120px 0 124px;
  background: var(--brand-background);
  border-top: 1px solid rgba(74, 85, 101, 0.09);
  border-bottom: 1px solid rgba(74, 85, 101, 0.09);
}

.approach-overview-media {
  margin: 0 34px 0 0;
  padding: 0 0 20px 20px;
  border-left: 1px solid rgba(74, 85, 101, 0.2);
  border-bottom: 1px solid rgba(74, 85, 101, 0.2);
}

.approach-overview-media img {
  display: block;
  width: 100%;
  height: 555px;
  object-fit: cover;
  filter: saturate(0.74);
}

.approach-overview-copy {
  padding-left: 26px;
}

.approach-overview-copy>p {
  margin: 25px 0 0;
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.82;
}

.approach-overview-records {
  margin-top: 34px;
  border-top: 1px solid rgba(74, 85, 101, 0.15);
}

.approach-overview-records div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(74, 85, 101, 0.15);
}

.approach-overview-records span,
.approach-stage-no,
.approach-standard-grid span {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.8px;
}

.approach-overview-records strong {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
}

.approach-stages {
  padding: 118px 0 124px;
  background: #ffffff;
}

.approach-stage-list {
  border-top: 1px solid rgba(74, 85, 101, 0.16);
}

.approach-stage {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(270px, 0.85fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px 22px 26px 0;
  border-bottom: 1px solid rgba(74, 85, 101, 0.16);
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.approach-stage::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--brand-muted);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.approach-stage:hover {
  background: var(--brand-background);
}

.approach-stage:hover::before {
  transform: scaleY(1);
}

.approach-stage-no {
  transition: color 0.3s ease, transform 0.3s ease;
}

.approach-stage:hover .approach-stage-no {
  color: var(--brand-muted);
  transform: translateX(8px);
}

.approach-stage small {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 1.8px;
}

.approach-stage h3 {
  margin: 0;
  color: var(--brand-primary);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.55px;
}

.approach-stage p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.72;
}

.approach-standards {
  padding: 118px 0 124px;
  background: var(--brand-background);
  border-top: 1px solid rgba(74, 85, 101, 0.09);
}

.approach-standard-grid {
  border-top: 1px solid rgba(74, 85, 101, 0.14);
  border-bottom: 1px solid rgba(74, 85, 101, 0.14);
}

.approach-standard-grid article {
  min-height: 260px;
  height: 100%;
  padding: 31px 30px 28px;
  border-right: 1px solid rgba(74, 85, 101, 0.14);
  transition: background-color 0.32s ease;
}

.approach-standard-grid>div:first-child article {
  border-left: 1px solid rgba(74, 85, 101, 0.14);
}

.approach-standard-grid article:hover {
  background: #ffffff;
}

.approach-standard-grid h3 {
  margin: 55px 0 15px;
  color: var(--brand-primary);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.5px;
}

.approach-standard-grid p {
  max-width: 300px;
  margin: 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.72;
}

@media (max-width: 991px) {
  .approach-intro,
  .approach-stages,
  .approach-standards {
    padding: 94px 0;
  }

  .approach-overview {
    padding: 96px 0;
  }

  .approach-overview-media {
    max-width: 690px;
    margin-right: 0;
  }

  .approach-overview-copy {
    padding: 24px 0 0;
  }

  .approach-stage {
    grid-template-columns: 58px minmax(220px, 0.8fr) minmax(270px, 1fr);
  }
}

@media (max-width: 767px) {
  .approach-intro,
  .approach-stages,
  .approach-standards {
    padding: 76px 0;
  }

  .approach-intro h2,
  .approach-overview-copy h2,
  .approach-stages h2,
  .approach-standards h2 {
    font-size: 36px;
    letter-spacing: -1.3px;
    line-height: 1.12;
  }

  .approach-overview {
    padding: 76px 0;
  }

  .approach-overview-media {
    margin-right: 0;
    padding: 0 0 14px 14px;
  }

  .approach-overview-media img {
    height: 365px;
  }

  .approach-stage {
    display: block;
    padding: 23px 4px 23px 0;
  }

  .approach-stage:hover {
    background: var(--brand-background);
  }

  .approach-stage:hover .approach-stage-no {
    transform: translateX(6px);
  }

  .approach-stage div {
    margin-top: 15px;
  }

  .approach-stage p {
    margin-top: 12px;
  }

  .approach-standard-grid article {
    min-height: auto;
    padding: 25px 24px 24px;
    border-left: 1px solid rgba(74, 85, 101, 0.14);
    border-bottom: 1px solid rgba(74, 85, 101, 0.14);
  }

  .approach-standard-grid>div:last-child article {
    border-bottom: 0;
  }

  .approach-standard-grid h3 {
    margin-top: 34px;
  }
}

/*--------------------------------------------------------------
# Projects Page - Intro
--------------------------------------------------------------*/
.projects-intro {
  padding: 116px 0 88px;
  background: #ffffff;
}

.projects-intro h2,
.projects-section-heading h2,
.projects-contact h2 {
  margin: 24px 0 0;
  color: var(--brand-primary);
  font-size: clamp(37px, 3.6vw, 54px);
  font-weight: 650;
  letter-spacing: -1.8px;
  line-height: 1.08;
}

.projects-intro .col-lg-5>p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.78;
}

.projects-intro-record {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 64px;
  padding: 0;
  border-top: 1px solid rgba(74, 85, 101, 0.15);
  border-bottom: 1px solid rgba(74, 85, 101, 0.15);
}

.projects-intro-record>div {
  padding: 20px 0;
}

.projects-intro-record>div span,
.projects-section-heading>p,
.project-note span {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 2px;
}

.projects-intro-record>div p {
  margin: 8px 0 0;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.projects-index {
  display: flex;
  align-self: stretch;
  border-left: 1px solid rgba(74, 85, 101, 0.15);
}

.projects-index a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 160px;
  padding: 17px 24px;
  border-right: 1px solid rgba(74, 85, 101, 0.15);
  background: rgba(242, 242, 242, 0.55);
}

.projects-index strong {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.6px;
}

.projects-index span {
  margin-top: 4px;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.projects-index a:hover {
  background: var(--brand-background);
}

.projects-index a:hover strong {
  color: var(--brand-muted);
}

/*--------------------------------------------------------------
# Projects Page - Ongoing Projects
--------------------------------------------------------------*/
.projects-catalog {
  padding: 116px 0 124px;
}

.ongoing-projects {
  background: var(--brand-background);
}

.projects-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(74, 85, 101, 0.15);
}

.projects-section-heading h2 {
  font-size: clamp(34px, 3.4vw, 50px);
}

.projects-section-heading>p {
  margin: 0 0 7px;
  color: var(--brand-muted);
}

.project-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(74, 85, 101, 0.15);
  background: #ffffff;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.project-card:hover {
  border-color: rgba(74, 85, 101, 0.28);
  box-shadow: 0 15px 35px rgba(74, 85, 101, 0.06);
  transform: translateY(-6px);
}

.project-card-media {
  position: relative;
  height: 292px;
  overflow: hidden;
  border-bottom: 1px solid rgba(74, 85, 101, 0.13);
  background: var(--brand-background);
}

.project-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76);
  transition: transform 0.45s ease;
}

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

.project-status {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 10px 7px;
  color: #ffffff;
  background: rgba(74, 85, 101, 0.92);
  font-family: var(--heading-font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.project-status.completed {
  color: var(--brand-muted);
  background: rgba(255, 255, 255, 0.92);
}

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

.project-record-no {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.8px;
}

.project-card h3 {
  margin: 26px 0 13px;
  color: var(--brand-primary);
  font-size: clamp(25px, 2.3vw, 31px);
  font-weight: 650;
  letter-spacing: -0.9px;
  line-height: 1.14;
}

.project-card-body>p {
  min-height: 78px;
  margin: 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.72;
}

.project-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(74, 85, 101, 0.13);
}

.project-card-meta span {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 550;
  line-height: 1.5;
}

.project-card-meta strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.project-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 31px 34px;
  background:
    linear-gradient(rgba(74, 85, 101, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 85, 101, 0.055) 1px, transparent 1px),
    var(--brand-background);
  background-size: 38px 38px;
  border: 1px solid rgba(74, 85, 101, 0.15);
}

.project-note p {
  max-width: 860px;
  margin: 0;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 550;
  letter-spacing: -0.7px;
  line-height: 1.38;
}

/*--------------------------------------------------------------
# Projects Page - Completed Projects
--------------------------------------------------------------*/
.completed-projects {
  background: #ffffff;
  border-top: 1px solid rgba(74, 85, 101, 0.09);
}

.completed-projects .project-card-media {
  height: 278px;
}

/*--------------------------------------------------------------
# Projects Page - Showcase
--------------------------------------------------------------*/
.projects-showcase {
  padding: 0 0 124px;
  background: #ffffff;
}

.projects-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  padding: 17px 0;
  border-top: 1px solid rgba(74, 85, 101, 0.16);
  border-bottom: 1px solid rgba(74, 85, 101, 0.16);
}

.projects-filter-bar>span {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 2px;
}

.projects-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.projects-filters button {
  position: relative;
  min-height: 38px;
  padding: 0 16px;
  color: var(--brand-muted);
  background: #ffffff;
  border: 1px solid rgba(74, 85, 101, 0.22);
  font-family: var(--nav-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.projects-filters button::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 9px;
  height: 9px;
  background: var(--brand-muted);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.projects-filters button:hover,
.projects-filters button.active {
  color: #ffffff;
  background: var(--brand-muted);
  border-color: var(--brand-muted);
}

.projects-filters button:hover::after,
.projects-filters button.active::after {
  opacity: 1;
}

.projects-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 292px;
  gap: 14px;
}

.projects-gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--brand-background);
  border: 1px solid rgba(74, 85, 101, 0.12);
}

.projects-gallery-item.is-hidden {
  display: none;
}

.projects-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.projects-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.04) 18%, rgba(7, 7, 7, 0.82) 100%);
  opacity: 0;
  transition: opacity 0.36s ease;
}

.projects-gallery-copy {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.projects-gallery-copy span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--nav-font);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.projects-gallery-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 650;
  letter-spacing: -0.7px;
  line-height: 1.08;
}

.projects-gallery-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.3px;
  opacity: 1;
  transform: none;
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.projects-gallery-item:hover img {
  filter: saturate(0.94) contrast(1.05);
  transform: scale(1.055);
}

.projects-gallery-item:hover .projects-gallery-overlay {
  opacity: 0.92;
}

.projects-gallery-item:hover .projects-gallery-copy,
.projects-gallery-item:hover .projects-gallery-copy p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .projects-showcase {
    padding-bottom: 96px;
  }

  .projects-filter-bar {
    display: block;
  }

  .projects-filter-bar>span {
    display: block;
    margin-bottom: 15px;
  }

  .projects-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }
}

@media (max-width: 576px) {
  .projects-showcase {
    padding-bottom: 76px;
  }

  .projects-filters {
    gap: 7px;
  }

  .projects-filters button {
    min-height: 36px;
    padding: 0 11px;
    font-size: 9px;
  }

  .projects-gallery {
    display: block;
  }

  .projects-gallery-item {
    min-height: 250px;
    margin-bottom: 12px;
  }

  .projects-gallery-overlay {
    opacity: 0.72;
  }

  .projects-gallery-copy,
  .projects-gallery-copy p {
    opacity: 1;
    transform: none;
  }
}

/*--------------------------------------------------------------
# Project Detail Page
--------------------------------------------------------------*/
.project-detail-summary {
  padding: 92px 0;
  background: #ffffff;
}

.project-detail-summary h2,
.project-detail-section-heading h2 {
  margin: 22px 0 22px;
  color: var(--brand-primary);
  font-family: var(--heading-font);
  font-size: clamp(33px, 3.15vw, 48px);
  font-weight: 650;
  letter-spacing: -1.8px;
  line-height: 1.08;
}

.project-detail-summary .col-lg-7>p {
  max-width: 670px;
  margin: 0 0 17px;
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.8;
}

.project-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(74, 85, 101, 0.15);
  border-left: 1px solid rgba(74, 85, 101, 0.15);
}

.project-detail-facts div {
  min-height: 112px;
  padding: 22px 20px;
  border-right: 1px solid rgba(74, 85, 101, 0.15);
  border-bottom: 1px solid rgba(74, 85, 101, 0.15);
  background: var(--brand-background);
}

.project-detail-facts span {
  display: block;
  margin-bottom: 15px;
  color: var(--brand-muted);
  font-family: var(--nav-font);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-detail-facts strong {
  display: block;
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
}

.project-detail-gallery {
  padding: 112px 0 124px;
  background: var(--brand-background);
  border-top: 1px solid rgba(74, 85, 101, 0.1);
}

.project-detail-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.project-detail-section-heading h2 {
  margin-bottom: 0;
}

.project-detail-section-heading>p {
  margin: 0 0 6px;
  color: var(--brand-muted);
  font-size: 14px;
}

.project-detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project-detail-gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background: var(--brand-background);
  border: 1px solid rgba(74, 85, 101, 0.12);
}

.project-detail-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(74, 85, 101, 0.16);
  opacity: 0;
  transition: opacity 0.32s ease;
}

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

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

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

@media (max-width: 991px) {
  .project-detail-summary,
  .project-detail-gallery {
    padding: 94px 0;
  }
}

@media (max-width: 767px) {
  .project-detail-title .inner-page-title-content {
    margin-top: 155px;
  }

  .project-detail-title h1 {
    max-width: 320px;
    font-size: 40px;
    line-height: 1.02;
  }

  .project-detail-summary,
  .project-detail-gallery {
    padding: 76px 0;
  }

  .project-detail-summary h2,
  .project-detail-section-heading h2 {
    font-size: 36px;
    letter-spacing: -1.3px;
  }

  .project-detail-section-heading {
    display: block;
  }

  .project-detail-section-heading>p {
    margin-top: 14px;
  }

  .project-detail-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .project-detail-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    top: 50%;
    width: 30px;
    height: 42px;
    display: flex !important;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
    transform: translateY(-50%);
  }

  .glightbox-clean .gprev {
    left: 6px;
  }

  .glightbox-clean .gnext {
    right: 6px;
  }

  .glightbox-clean .gprev svg,
  .glightbox-clean .gnext svg {
    width: 18px;
  }

  .glightbox-clean .gclose {
    top: 14px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.42);
  }
}

/*--------------------------------------------------------------
# Projects Page - Contact
--------------------------------------------------------------*/
.projects-contact {
  padding: 96px 0;
  background: var(--brand-background);
  border-top: 1px solid rgba(74, 85, 101, 0.11);
}

.projects-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding: 18px 0 14px;
  color: var(--brand-muted);
  border-bottom: 1px solid rgba(74, 85, 101, 0.46);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.projects-contact-link i {
  font-size: 18px;
  transition: 0.3s ease;
}

.projects-contact-link:hover {
  color: var(--brand-muted);
  border-color: rgba(74, 85, 101, 0.24);
}

.projects-contact-link:hover i {
  transform: translate(4px, -4px);
}

/*--------------------------------------------------------------
# Projects Page - Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .projects-intro,
  .projects-catalog {
    padding: 94px 0;
  }

  .project-card-body>p {
    min-height: auto;
  }

  .projects-contact {
    padding: 88px 0;
  }
}

@media (max-width: 767px) {
  .projects-intro,
  .projects-catalog,
  .projects-contact {
    padding: 76px 0;
  }

  .projects-intro h2,
  .projects-contact h2 {
    font-size: 36px;
    letter-spacing: -1.3px;
    line-height: 1.12;
  }

  .projects-intro-record {
    display: block;
    margin-top: 42px;
  }

  .projects-intro-record>div {
    padding: 18px 0;
  }

  .projects-intro-record>div p {
    margin-top: 10px;
    line-height: 1.65;
  }

  .projects-index {
    border-top: 1px solid rgba(74, 85, 101, 0.15);
  }

  .projects-index a {
    flex: 1;
    min-width: 0;
    padding: 15px 14px;
  }

  .projects-index strong {
    font-size: 19px;
  }

  .projects-index span {
    font-size: 8px;
  }

  .projects-section-heading {
    display: block;
    margin-bottom: 22px;
  }

  .projects-section-heading h2 {
    margin-top: 20px;
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .projects-section-heading>p {
    margin-top: 14px;
  }

  .project-card-media,
  .completed-projects .project-card-media {
    height: 228px;
  }

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

  .project-card h3 {
    margin-top: 23px;
    font-size: 25px;
  }

  .project-note {
    display: block;
    margin-top: 20px;
    padding: 26px 23px;
  }

  .project-note p {
    margin-top: 17px;
    font-size: 20px;
  }

  .projects-contact-link {
    margin-top: 14px;
  }
}

/* Give page content a little more room on larger screens. */
@media (min-width: 1200px) {
  .container,
  .header .container-xl {
    max-width: 1260px;
  }
}

@media (min-width: 1600px) {
  .container,
  .header .container-xl {
    max-width: 1440px;
  }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page .contact-page-title .inner-page-title-image {
  object-position: center 52%;
}

.contact-page .contact-editorial {
  padding: 116px 0 132px;
  background: #ffffff;
}

.contact-page .contact-editorial h2 {
  margin: 27px 0 23px;
  color: var(--brand-primary);
  font-size: clamp(42px, 4.15vw, 64px);
  font-weight: 620;
  letter-spacing: -2.6px;
  line-height: 0.98;
}

.contact-page .contact-editorial h2 strong {
  display: inline-block;
  margin-top: 7px;
  color: var(--brand-muted);
  font-weight: 350;
  letter-spacing: -3.2px;
}

.contact-page .contact-editorial-lead {
  max-width: 560px;
  margin: 0;
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.85;
}

.contact-page .contact-editorial-details {
  max-width: 560px;
  margin-top: 48px;
  border-top: 1px solid var(--about-line);
}

.contact-page .contact-editorial-detail {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--about-line);
}

.contact-page .contact-editorial-number,
.contact-page .contact-editorial-label,
.contact-page .contact-editorial-form .form-header span {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 2px;
}

.contact-page .contact-editorial-detail p {
  margin: 7px 0 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-page .contact-editorial-form {
  padding: 5px 0 0 58px;
  border: 0;
  border-left: 1px solid rgba(74, 85, 101, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-page .contact-editorial-form .form-header {
  margin-bottom: 34px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--about-line);
}

.contact-page .contact-editorial-form .form-header h3 {
  margin: 10px 0 7px;
  color: var(--brand-primary);
  font-size: 38px;
  font-weight: 650;
  letter-spacing: -1.2px;
}

.contact-page .contact-editorial-form .form-header p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 14px;
}

.contact-page .contact-editorial-form .form-group {
  margin-bottom: 23px;
}

.contact-page .contact-editorial-form .form-group label {
  color: var(--brand-muted);
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-page .contact-editorial-form .form-group input,
.contact-page .contact-editorial-form .form-group textarea {
  border: 0;
  border-bottom: 1px solid rgba(74, 85, 101, 0.2);
  border-radius: 0;
  padding: 10px 0 13px;
  background: transparent;
}

.contact-page .contact-editorial-form .form-group input:focus,
.contact-page .contact-editorial-form .form-group textarea:focus {
  border-color: var(--brand-muted);
  box-shadow: none;
}

.contact-page .contact-editorial-form .submit-btn {
  border-radius: 0;
  padding: 16px 24px;
  background: var(--brand-primary);
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.contact-page .contact-editorial-form .submit-btn:hover {
  background: var(--brand-muted);
}

@media (max-width: 991px) {
  .contact-page .contact-editorial {
    padding: 88px 0 94px;
  }

  .contact-page .contact-editorial-form {
    margin-top: 8px;
    padding: 38px 0 0;
    border-left: 0;
    border-top: 1px solid var(--about-line);
  }
}

@media (max-width: 575px) {
  .contact-page .contact-editorial {
    padding: 72px 0 78px;
  }

  .contact-page .contact-editorial h2 {
    font-size: 41px;
    letter-spacing: -2px;
  }

  .contact-page .contact-editorial h2 strong {
    letter-spacing: -2.4px;
  }

  .contact-page .contact-editorial-details {
    margin-top: 38px;
  }

  .contact-page .contact-editorial-form {
    padding: 32px 0 0;
  }

  .contact-page .contact-editorial-form .form-header h3 {
    font-size: 32px;
  }

}
