﻿@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Google Sans",  sans-serif;
  --heading-font: "Google Sans",  sans-serif;
  --nav-font: "Google Sans", sans-serif;
}

:root { 
  --background-color: #ffffff;
  --default-color: #666666;
  --heading-color: #000000;
  --accent-color: #0069ab;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --brand-blue: #0069ab;
  --brand-blue-hover: #1182be;
  --brand-navy: #0e2344;
  --brand-ink: #17243c;
  --brand-soft: #f3f8fc;
  --button-radius: 9px;
  --button-icon-gap: 9px;
  --button-hover-opacity: 0.88;
  --header-glass-background: #e8eaecd0;
  --header-glass-blur: blur(24px) saturate(165%);
  --header-glass-border: rgba(14, 35, 68, 0.1);
}

:root {
  --nav-color: #999999;
  --nav-hover-color: #000000;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #666666;
  --nav-dropdown-hover-color: #313131;
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #e3e3e3;
  --heading-color: #ffffff;
  --accent-color: #bdb5b5;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* 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,
.php-email-form .sent-message,
.php-email-form .loading {
  display: none;
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 22px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid transparent;
}

.php-email-form .error-message {
  display: none;
  color: #b42318;
  background: #fff4f3;
  border-color: rgba(180, 35, 24, 0.16);
  text-align: left;
}

.php-email-form .sent-message {
  color: #047857;
  background: #ecfdf5;
  border-color: rgba(4, 120, 87, 0.16);
  text-align: center;
}

.php-email-form .loading {
  color: var(--heading-color);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 84%);
  text-align: center;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0 10px -5px 0;
  border-radius: 50%;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  border-top-color: var(--accent-color);
  animation: php-email-form-loading 0.8s linear infinite;
}

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

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

@media (max-width: 767px) {
  .php-email-form input,
  .php-email-form select,
  .php-email-form textarea,
  .php-email-form .hero-form-control input,
  .php-email-form .hero-form-control select,
  .hero-quote-card .php-email-form .hero-form-control input,
  .hero-quote-card .php-email-form .hero-form-control select,
  .php-email-form .contact-linear-form-group input,
  .php-email-form .contact-linear-form-group select,
  .php-email-form .contact-linear-form-group textarea,
  .contact-linear .php-email-form .contact-linear-form-group input,
  .contact-linear .php-email-form .contact-linear-form-group select,
  .contact-linear .php-email-form .contact-linear-form-group textarea {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --header-text-color: #ffffff;
  --header-button-background: rgba(255, 255, 255, 0.08);
  --mobile-header-height: 64px;

  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 997;
  padding: 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  will-change: transform;
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease;
}

body.header-hidden .header {
  transform: translate3d(0, calc(-100% - 12px), 0);
  opacity: 0.98;
  pointer-events: none;
}

body.mobile-nav-active .header,
body.desktop-dropdown-open .header {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
}

body.mobile-nav-active .header {
  background-color: var(--header-glass-background);
  border-bottom-color: var(--header-glass-border);
}

.header-container {
  width: 100%;
  max-width: 1440px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  transition: min-height 0.35s ease;
}


/*--------------------------------------------------------------
# Header Logo
--------------------------------------------------------------*/
.header-logo {
  position: relative;
  width: fit-content;
  min-width: 162px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}

.header-logo img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 162px;
  max-height: 36px;
  object-fit: contain;
  object-position: left center;
  filter: none;
  transform: translateY(-50%);
  transition: opacity 0.25s ease;
}

.header-logo-image-color {
  opacity: 1;
}

.header-logo-image-dark {
  opacity: 0;
}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
.navmenu {
  justify-self: end;
  margin-right: 4px;
}

.navmenu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--header-text-color);
  font-family: var(--nav-font, "Google Sans", sans-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.88;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.navmenu a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.navmenu a:hover,
.navmenu a:focus,
.navmenu a.active {
  color: var(--header-text-color);
  opacity: 1;
}

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

/* Desktop Services Dropdown */
.nav-dropdown-toggle {
  gap: 7px;
}

.nav-dropdown-toggle > i {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.nav-dropdown:hover .nav-dropdown-toggle > i,
.nav-dropdown:focus-within .nav-dropdown-toggle > i,
.nav-dropdown.is-open .nav-dropdown-toggle > i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: fixed;
  top: 82px;
  left: 50%;
  z-index: 998;
  width: min(520px, calc(100vw - 48px));
  padding-top: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition: none;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu--compact {
  width: min(260px, calc(100vw - 48px));
}

.nav-dropdown-menu--compact .nav-dropdown-grid {
  grid-template-columns: 1fr;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-height: auto;
  overflow: hidden;
  padding: 16px 0;
  background: var(--header-glass-background) !important;
  border: 1px solid var(--header-glass-border);
  border-radius: 7px;
  box-shadow: 0 18px 38px rgba(14, 35, 68, 0.14);
  backdrop-filter: var(--header-glass-blur) !important;
  -webkit-backdrop-filter: var(--header-glass-blur) !important;
  transition: none;
}

.nav-dropdown.is-open .nav-dropdown-grid,
.nav-dropdown:hover .nav-dropdown-grid,
.nav-dropdown:focus-within .nav-dropdown-grid,
body.scrolled .nav-dropdown.is-open .nav-dropdown-grid,
body.scrolled .nav-dropdown:hover .nav-dropdown-grid,
body.scrolled .nav-dropdown:focus-within .nav-dropdown-grid {
  background: var(--header-glass-background) !important;
  backdrop-filter: var(--header-glass-blur) !important;
  -webkit-backdrop-filter: var(--header-glass-blur) !important;
}

.nav-dropdown-column {
  min-width: 0;
  padding: 0 18px;
}

.nav-dropdown-column + .nav-dropdown-column {
  border-left: 1px solid rgba(14, 35, 68, 0.16);
}

.nav-dropdown-column > a,
.nav-dropdown-column > a:focus {
  position: relative;
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  color: #070b13;
  background-color: transparent;
  border-radius: 4px;
  font-family: var(--nav-font, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  opacity: 1;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.nav-dropdown-column > a::after {
  display: none;
}

.nav-dropdown-column > a i {
  width: 15px;
  min-width: 15px;
  color: #05070b;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  transition: transform 0.25s ease;
}

.nav-dropdown-column > a:hover,
.nav-dropdown-column > a:focus {
  color: #000000;
  background-color: rgba(17, 24, 39, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  opacity: 1;
  transform: none;
}

.nav-dropdown-column > a:hover i,
.nav-dropdown-column > a:focus i {
  transform: scale(1.04);
}


/*--------------------------------------------------------------
# Header Actions
--------------------------------------------------------------*/
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-contact-btn,
.header-branch-btn,
.header-quote-btn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--nav-font, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--button-radius);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


/* Branch Button */
.header-branch-btn {
  width: 124px;
  padding: 0 14px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.header-branch-btn:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.82);
}

/* Quote Button */
.header-quote-btn {
  width: 124px;
  gap: var(--button-icon-gap);
  padding: 0 13px 0 15px;
  color: #171b20;
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.header-quote-icon {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.header-quote-icon svg {
  width: 11px;
  height: 11px;
  transition: transform 0.25s ease;
}

.header-quote-btn:hover {
  color: #171b20;
  background-color: rgba(255, 255, 255, 0.80);
  border-color: rgba(255, 255, 255, 0.80);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.header-quote-btn:hover .header-quote-icon svg {
  transform: rotate(45deg);
}


/*--------------------------------------------------------------
# Scrolled Header
--------------------------------------------------------------*/
body.scrolled .header {
  background-color: var(--header-glass-background);
  border-bottom-color: var(--header-glass-border);
  box-shadow: 0 10px 30px rgba(14, 35, 68, 0.08);
  backdrop-filter: var(--header-glass-blur);
  -webkit-backdrop-filter: var(--header-glass-blur);
}

body.scrolled.desktop-dropdown-open .header {
  background-color: var(--header-glass-background);
  border-bottom-color: var(--header-glass-border);
  box-shadow: 0 10px 30px rgba(14, 35, 68, 0.08);
  backdrop-filter: var(--header-glass-blur);
  -webkit-backdrop-filter: var(--header-glass-blur);
}

body.scrolled .header-container {
  min-height: 64px;
}

body.mobile-nav-active .header {
  background-color: var(--header-glass-background);
  border-bottom-color: var(--header-glass-border);
  box-shadow: 0 8px 30px rgba(14, 35, 68, 0.06);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
}

body.scrolled .header-logo-image-color {
  opacity: 0;
}

body.scrolled .header-logo-image-dark {
  opacity: 1;
}

body.scrolled .navmenu a,
body.scrolled .navmenu a:focus {
  color: #253047;
}

body.scrolled .navmenu a:hover,
body.scrolled .navmenu a:focus,
body.scrolled .navmenu a.active {
  color: #111827;
}

body.scrolled .header-branch-btn {
  color: #111827;
  background-color: transparent;
  border-color: rgba(17, 24, 39, 0.42);
}

body.scrolled .header-branch-btn:hover {
  color: #111827;
  background-color: rgba(17, 24, 39, 0.07);
  border-color: rgba(17, 24, 39, 0.56);
}

body.scrolled .header-quote-btn {
  color: #ffffff;
  background-color: #111827;
  border-color: #111827;
}

body.scrolled .header-quote-btn:hover {
  color: #ffffff;
  background-color: rgba(17, 24, 39, 0.88);
  border-color: rgba(17, 24, 39, 0.88);
}

body.scrolled .header-quote-icon {
  color: currentColor;
  background-color: transparent;
}

body.scrolled .header-quote-btn:hover .header-quote-icon svg {
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
# Mobile Toggle
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
}

.mobile-nav-toggle span {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background-color: currentColor;
  border-radius: 4px;
  transition:
    top 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.mobile-nav-toggle span:first-child {
  top: 17px;
}

.mobile-nav-toggle span:last-child {
  top: 25px;
}

body.scrolled .mobile-nav-toggle {
  color: #111827;
}

body.mobile-nav-active .mobile-nav-toggle {
  color: #111827;
}

body.mobile-nav-active .mobile-nav-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

body.mobile-nav-active .mobile-nav-toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}


/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-overlay {
  position: fixed;
  top: var(--mobile-header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9997;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(4, 14, 31, 0.52);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.mobile-nav-panel {
  position: fixed;
  top: var(--mobile-header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: calc(100vh - var(--mobile-header-height));
  height: calc(100dvh - var(--mobile-header-height));
  padding: 0 26px 26px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: none;
  visibility: hidden;
  transform: translateX(-100%);
  transition:
    transform 0.4s cubic-bezier(0.77, 0, 0.18, 1),
    visibility 0.4s ease;
}

.mobile-nav-header {
  min-height: 0;
  display: none;
  align-items: center;
  padding-right: 55px;
  border-bottom: 1px solid rgba(14, 35, 68, 0.09);
}

.mobile-nav-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.mobile-nav-logo img {
  display: block;
  width: 148px;
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
}

.mobile-nav-menu {
  padding-top: 36px;
}

.mobile-nav-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-nav-menu li {
  border-bottom: 1px solid rgba(14, 35, 68, 0.09);
}

.mobile-nav-menu .mobile-quote-item {
  padding-top: 18px;
  border-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mobile-nav-menu a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #17243c;
  font-family: var(--nav-font, "Inter", sans-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.mobile-services-toggle {
  width: 100%;
  min-height: 62px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #17243c;
  background: transparent;
  border: 0;
  font-family: var(--nav-font, "Inter", sans-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.mobile-services-toggle.active {
  color: var(--brand-blue);
  font-weight: 650;
}

.mobile-services-toggle > i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.mobile-services-item.is-open .mobile-services-toggle {
  color: var(--brand-blue);
}

.mobile-services-item.is-open .mobile-services-toggle > i {
  transform: rotate(180deg);
}

.mobile-nav-menu .mobile-services-submenu {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.45s ease,
    padding 0.3s ease,
    opacity 0.3s ease;
}

.mobile-services-item.is-open .mobile-services-submenu {
  max-height: 620px;
  padding: 4px 0 14px;
  opacity: 1;
}

.mobile-nav-menu .mobile-services-submenu li {
  border-bottom: 1px solid rgba(14, 35, 68, 0.08);
}

.mobile-nav-menu .mobile-services-submenu li:last-child {
  border-bottom: 0;
}

.mobile-nav-menu .mobile-services-submenu a {
  min-height: 48px;
  padding: 0 4px 0 16px;
  color: rgba(23, 36, 60, 0.82);
  font-size: 15px;
  font-weight: 500;
}

.mobile-nav-menu .mobile-services-submenu a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: 0.48;
  transform: rotate(45deg);
}

.mobile-nav-menu .mobile-services-submenu a:hover {
  color: var(--brand-blue);
  padding-left: 19px;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  color: #0069ab;
  padding-left: 5px;
}

.mobile-link-arrow {
  font-size: 17px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.mobile-nav-menu a:hover .mobile-link-arrow {
  transform: translate(2px, -2px);
}

.mobile-nav-menu .mobile-branch-btn,
.mobile-nav-menu .mobile-quote-btn {
  width: 132px;
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--button-icon-gap);
  border-radius: var(--button-radius);
  text-decoration: none;
  font-family: var(--nav-font, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid transparent;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    opacity 0.25s ease;
}

.mobile-nav-menu .mobile-branch-btn {
  color: #111827;
  background-color: transparent;
  border-color: rgba(17, 24, 39, 0.42);
}

.mobile-nav-menu .mobile-quote-btn {
  color: #ffffff;
  background-color: #111827;
  border-color: #111827;
  justify-content: center;
}

.mobile-nav-menu .mobile-quote-icon {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.mobile-nav-menu .mobile-quote-icon svg {
  width: 11px;
  height: 11px;
  transition: transform 0.25s ease;
}

.mobile-nav-menu .mobile-branch-btn:hover,
.mobile-nav-menu .mobile-branch-btn.active {
  color: #111827;
  background-color: transparent;
  border-color: rgba(17, 24, 39, 0.42);
  opacity: var(--button-hover-opacity);
  padding-left: 13px;
}

.mobile-nav-menu .mobile-quote-btn:hover,
.mobile-nav-menu .mobile-quote-btn.active,
.mobile-quote-btn:hover {
  color: #ffffff;
  background-color: #111827;
  border-color: #111827;
  opacity: var(--button-hover-opacity);
  padding-left: 13px;
  transform: none;
}

.mobile-nav-menu .mobile-quote-btn:hover .mobile-quote-icon svg {
  transform: rotate(45deg);
}

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

body.mobile-nav-active .mobile-nav-overlay {
  visibility: visible;
  opacity: 1;
}

body.mobile-nav-active .mobile-nav-panel {
  visibility: visible;
  transform: translateX(0);
}


/*--------------------------------------------------------------
# Header Responsive
--------------------------------------------------------------*/
@media (max-width: 1280px) {
  .header-container {
    padding-right: 24px;
    padding-left: 24px;
    grid-template-columns: minmax(160px, 1fr) auto auto;
    gap: 18px;
  }

  .header-logo img {
    width: 170px;
  }

  .navmenu a,
  .navmenu a:focus {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 14px;
  }

  .navmenu a::after {
    right: 10px;
    left: 10px;
  }

  .header-contact-btn {
    min-width: 96px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .header-quote-btn {
    min-width: 108px;
    padding-left: 16px;
  }
}

@media (max-width: 1199px) {
  .header {
    --mobile-header-height: 64px;
    z-index: 10000;
  }

  .header,
  body.scrolled .header,
  body.mobile-nav-active .header {
    background-color: #ffffff;
    border-bottom-color: rgba(14, 35, 68, 0.09);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-container {
    min-height: 64px;
    padding-right: 20px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-logo img {
    width: 156px;
    max-height: 34px;
  }

  .header-logo {
    min-width: 156px;
    height: 34px;
  }

  body.scrolled .header-logo-image-color,
  body.mobile-nav-active .header-logo-image-color {
    display: none;
    opacity: 0;
  }

  body.scrolled .header-logo-image-dark,
  body.mobile-nav-active .header-logo-image-dark {
    display: block;
    opacity: 1;
  }

  .header-logo-image-color {
    display: none;
    opacity: 0;
  }

  .header-logo-image-dark {
    display: block;
    opacity: 1;
  }

  .navmenu,
  .header-actions {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    color: #111827;
  }

  .mobile-nav-header {
    min-height: 72px;
  }
}

@media (max-width: 575px) {
  .header {
    --mobile-header-height: 60px;
  }

  .header-container {
    min-height: 60px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .header-logo img {
    width: 146px;
    max-height: 32px;
  }

  .header-logo {
    min-width: 146px;
    height: 32px;
  }

  .mobile-nav-toggle {
    width: 38px;
    height: 38px;
  }

  .mobile-nav-toggle span {
    width: 21px;
  }

  .mobile-nav-toggle span:first-child {
    top: 15px;
  }

  .mobile-nav-toggle span:last-child {
    top: 23px;
  }

  body.mobile-nav-active .mobile-nav-toggle span:first-child,
  body.mobile-nav-active .mobile-nav-toggle span:last-child {
    top: 19px;
  }

  .mobile-nav-panel {
    width: 100vw;
    padding-right: 22px;
    padding-left: 22px;
  }

  .mobile-nav-header {
    min-height: 68px;
  }

  .mobile-nav-logo img {
    width: 136px;
  }

  .mobile-nav-menu {
    padding-top: 25px;
  }

  .mobile-nav-menu a {
    min-height: 58px;
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  position: relative;
  overflow: hidden;
  background-color: #050505;
  color: #9a9a9a;
  padding: 0;
  font-size: 14px;
}

.footer a {
  text-decoration: none;
}

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

.footer .footer-layout {
  align-items: flex-start;
}

.footer .footer-layout > [class*="col-"] {
  display: flex;
}

.footer .footer-layout > [class*="col-"] > * {
  width: 100%;
}

/*--------------------------------------------------------------
# Footer Brand
--------------------------------------------------------------*/
.footer .footer-brand {
  max-width: 330px;
  padding-right: 0;
}

.footer .footer-logo {
  display: inline-flex;
  align-items: flex-start;
  color: #ffffff;
  margin-bottom: 28px;
  line-height: 1;
}

.footer .footer-logo img {
  display: block;
  width: 230px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  -webkit-filter: brightness(0) invert(1) contrast(1.08);
  filter: brightness(0) invert(1) contrast(1.08);
}

.footer .footer-description {
  max-width: 330px;
  margin: 0 0 28px;
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.8;
}

.footer .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  margin: 0 0 23px;
  padding: 0;
}

.footer .footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.55;
}

.footer .footer-contact-list i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #ffffff;
  font-size: 15px;
}

.footer .footer-contact-list a {
  color: #9a9a9a;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer .footer-contact-list a:hover {
  color: #ffffff;
}

/*--------------------------------------------------------------
# Footer Columns
--------------------------------------------------------------*/
.footer .footer-link-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  max-width: 330px;
  margin: 0 auto;
  padding: 0;
}

.footer .footer-column {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}

.footer .footer-column h4 {
  position: relative;
  margin: 0 0 18px;
  padding: 0 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .footer-links li {
  margin: 0;
  padding: 0;
}

.footer .footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.4;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer .footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

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

.footer .footer-links a:hover::after {
  width: 100%;
}

/*--------------------------------------------------------------
# Footer Social
--------------------------------------------------------------*/
.footer .footer-contact-column {
  max-width: 330px;
  margin-left: auto;
  padding-right: 0;
}

.footer .footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 0;
}

.footer .footer-brand .footer-social-links {
  margin-top: 0;
}

.footer .footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #050505;
  background-color: #e0e0e0;
  font-size: 13px;
  font-weight: 700;
  transition:
    gap 0.25s ease,
    opacity 0.25s ease;
}

.footer .footer-social-links a i {
  font-size: 14px;
}

.footer .footer-social-links a:hover {
  color: #050505;
  background-color: #e0e0e0;
  border-color: #e0e0e0;
  gap: 15px;
  opacity: 0.92;
}

/*--------------------------------------------------------------
# Footer Bottom
--------------------------------------------------------------*/
.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 19px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer .footer-bottom p {
  margin: 0;
  color: #777777;
  font-size: 13px;
  line-height: 1.6;
}

.footer .footer-copyright span {
  color: #ffffffd1;
  font-weight: 500;
}

.footer .footer-credit {
  color: #777777;
  text-align: right;
}

.footer .footer-credit a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer .footer-credit a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.28);
  transition: width 0.3s ease;
}

.footer .footer-credit a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer .footer-credit a:hover::after {
  width: 0;
}

/*--------------------------------------------------------------
# Footer Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .footer .footer-main {
    padding: 66px 0 54px;
  }

  .footer .footer-brand {
    padding-right: 0;
  }

  .footer .footer-link-group {
    gap: 24px;
    max-width: 320px;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .footer .footer-column {
    border-left: 0;
  }
}

@media (max-width: 991px) {
  .footer .footer-main {
    padding: 50px 0 20px;
  }

  .footer .footer-brand {
    max-width: 100%;
    margin-bottom: 55px;
    padding-right: 0;
  }

  .footer .footer-link-group {
    gap: 30px;
    max-width: 100%;
    margin-bottom: 38px;
    padding: 0;
  }

  .footer .footer-description {
    max-width: 520px;
  }

  .footer .footer-column {
    margin-bottom: 38px;
    padding-left: 0;
    padding-right: 35px;
  }

  .footer .footer-contact-column {
    max-width: 100%;
    margin-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .footer .footer-main {
    padding: 44px 0 12px;
  }

  .footer .footer-brand {
    margin-bottom: 38px;
  }

  .footer .footer-link-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 24px;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .footer .footer-column {
    margin-bottom: 0;
    padding-right: 0;
  }

  .footer .footer-column h4 {
    min-height: 34px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: 12px;
  }

  .footer .footer-links {
    gap: 13px;
  }

  .footer .footer-links a {
    font-size: 13px;
  }

  .footer .footer-contact-column {
    margin-top: 4px;
    padding-right: 0;
  }

  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 22px 0;
  }

  .footer .footer-credit {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .footer .footer-main {
    padding-top: 40px;
  }

  .footer .footer-column {
    padding-right: 0;
  }

  .footer .footer-link-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .footer .footer-social-links {
    width: auto;
  }

  .footer .footer-social-links a {
    flex: 0 0 auto;
  }

  .footer .footer-bottom p {
    font-size: 12px;
  }
}

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

#preloader.preloader-hide {
  opacity: 0;
  visibility: hidden;
}

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

.tm-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f4f4 0%, #ececec 100%);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tm-preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-duration: 0.26s;
}

.tm-preloader::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.035;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14) 1px, transparent 1px);
  background-size: 36px 36px;
}

.tm-preloader::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.10) 36%,
    rgba(255, 255, 255, 0) 72%
  );
}

.tm-preloader-inner {
  position: relative;
  z-index: 2;
  width: min(86vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-preloader-logo {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-preloader-logo svg {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.035));
}

.tm-preloader-logo svg > g:first-of-type > *,
.tm-preloader-logo svg > g:last-of-type > * {
  opacity: 0;
  will-change: transform, opacity;
  transform-box: fill-box;
  backface-visibility: hidden;
}

.tm-preloader-logo svg > g:first-of-type > * {
  transform-origin: center bottom;
  transform: translateY(14px) scaleY(0.72);
}

.tm-preloader.is-ready .tm-preloader-logo svg > g:first-of-type > * {
  animation: tmIconRise 0.52s cubic-bezier(.22, 1, .36, 1) forwards;
}

.tm-preloader-logo svg > g:first-of-type > *:nth-child(1) { animation-delay: 0.06s; }
.tm-preloader-logo svg > g:first-of-type > *:nth-child(2) { animation-delay: 0.14s; }
.tm-preloader-logo svg > g:first-of-type > *:nth-child(3) { animation-delay: 0.22s; }

.tm-preloader-logo svg > g:last-of-type > * {
  transform-origin: center center;
  transform: translateY(8px);
}

.tm-preloader.is-ready .tm-preloader-logo svg > g:last-of-type > * {
  animation: tmLetterReveal 0.42s cubic-bezier(.22, 1, .36, 1) forwards;
}

.tm-preloader-logo svg > g:last-of-type > *:nth-child(1)  { animation-delay: 0.34s; }
.tm-preloader-logo svg > g:last-of-type > *:nth-child(2)  { animation-delay: 0.39s; }
.tm-preloader-logo svg > g:last-of-type > *:nth-child(3)  { animation-delay: 0.44s; }
.tm-preloader-logo svg > g:last-of-type > *:nth-child(4)  { animation-delay: 0.49s; }
.tm-preloader-logo svg > g:last-of-type > *:nth-child(5)  { animation-delay: 0.54s; }
.tm-preloader-logo svg > g:last-of-type > *:nth-child(6)  { animation-delay: 0.59s; }
.tm-preloader-logo svg > g:last-of-type > *:nth-child(7)  { animation-delay: 0.64s; }
.tm-preloader-logo svg > g:last-of-type > *:nth-child(8)  { animation-delay: 0.69s; }
.tm-preloader-logo svg > g:last-of-type > *:nth-child(9)  { animation-delay: 0.74s; }
.tm-preloader-logo svg > g:last-of-type > *:nth-child(10) { animation-delay: 0.79s; }
.tm-preloader-logo svg > g:last-of-type > *:nth-child(11) { animation-delay: 0.84s; }
.tm-preloader-logo svg > g:last-of-type > *:nth-child(12) { animation-delay: 0.89s; }

@keyframes tmIconRise {
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

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

@media (max-width: 767.98px) {
  .tm-preloader::before {
    background-size: 28px 28px;
  }

  .tm-preloader-logo svg {
    max-width: 360px;
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Call Button
--------------------------------------------------------------*/
.scroll-top {
  --pix-primary: var(--brand-navy);
  --pix-white: #ffffff;
  --pix-launcher-background-color: var(--pix-primary);
  --pix-launcher-color: var(--pix-white);
  --pix-launcher-padding: 14px;
  --pix-launcher-bottom-value: 40px;
  --pix-launcher-horizontal-value: 20px;
  position: fixed;
  visibility: visible;
  opacity: 1;
  right: var(--pix-launcher-horizontal-value);
  bottom: var(--pix-launcher-bottom-value);
  z-index: 99999;
  width: calc(24px + (var(--pix-launcher-padding) * 2));
  min-width: calc(24px + (var(--pix-launcher-padding) * 2));
  height: calc(24px + (var(--pix-launcher-padding) * 2));
  padding: var(--pix-launcher-padding);
  color: var(--pix-launcher-color);
  background-color: var(--pix-launcher-background-color);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(14, 35, 68, 0.22);
  transform-origin: center;
  transition:
    opacity 0.35s ease,
    transform 0.38s ease,
    box-shadow 0.35s ease;
}

.scroll-top i {
  font-size: 20px;
  color: currentColor;
  line-height: 0;
  transform-origin: center;
  animation: call-icon-ring 3.8s ease-in-out infinite;
}

.scroll-top:hover {
  color: var(--pix-launcher-color);
  background-color: var(--pix-launcher-background-color);
  opacity: var(--button-hover-opacity);
  transform: scale(1.1);
  box-shadow: 0 16px 36px rgba(14, 35, 68, 0.28);
}

.scroll-top:hover i {
  animation-play-state: paused;
}

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

@keyframes call-icon-ring {
  0%,
  72%,
  100% {
    transform: rotate(0deg);
  }

  76% {
    transform: rotate(-10deg);
  }

  80% {
    transform: rotate(10deg);
  }

  84% {
    transform: rotate(-7deg);
  }

  88% {
    transform: rotate(7deg);
  }

  92% {
    transform: rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top i {
    animation: none;
  }
}

/*--------------------------------------------------------------
# Magic Scroll Reveals
--------------------------------------------------------------*/
.magic-text-reveal {
  opacity: 1;
}

.magic-word-shell {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
  vertical-align: bottom;
}

.magic-word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(118%) skewY(7deg) scale(0.96);
  transform-origin: left bottom;
  text-shadow: 0 0 24px currentColor;
  will-change: opacity, filter, transform;
}

.magic-text-reveal.is-visible .magic-word {
  animation: magic-word-in 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--reveal-delay, 0ms) + var(--word-delay, 0ms));
}

@keyframes magic-word-in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(118%) skewY(7deg) scale(0.96);
    text-shadow: 0 0 24px currentColor;
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) skewY(0) scale(1);
    text-shadow: 0 0 0 transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .magic-word {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
    text-shadow: none;
    animation: none;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/

.page-title {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: #111827;
}

.page-title .container {
  position: relative;
  z-index: 5;
  padding-top: 44px;
}

.page-title-content {
  max-width: 760px;
}

.page-title h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
  color: #ffffff;
}

.page-title nav ol {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-title nav li {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.74);
}

.page-title nav li+li::before {
  content: "›";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.48);
}

.page-title nav a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition: .3s;
}

.page-title nav a:hover {
  color: #ffffff;
}

/*--------------------------------------------------------------
# Background Image
--------------------------------------------------------------*/

.page-title-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-title-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Left White Fade
--------------------------------------------------------------*/

.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.2) 52%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      90deg,
      rgba(4, 13, 29, 0.52) 0%,
      rgba(4, 13, 29, 0.23) 42%,
      rgba(4, 13, 29, 0.1) 69%,
      rgba(4, 13, 29, 0.2) 100%
    );
}

/*--------------------------------------------------------------
# Bottom Fade
--------------------------------------------------------------*/

.page-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58%;
  z-index: 3;
  background:
    linear-gradient(
      0deg,
      rgba(2, 9, 19, 0.82) 0%,
      rgba(2, 9, 19, 0.38) 44%,
      rgba(2, 9, 19, 0) 100%
    );
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

@media (max-width: 991px) {
  .page-title {
    min-height: 280px;
  }

  .page-title .container {
    padding-top: 36px;
  }

  .page-title h1 {
    font-size: 42px;
    margin-bottom: 16px;
  }

  .page-title nav li {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .page-title {
    min-height: 220px;
  }

  .page-title .container {
    padding-top: 52px;
  }

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

  .page-title h1 {
    font-size: 32px;
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .page-title nav ol {
    gap: 8px;
  }

  .page-title nav li {
    font-size: 12px;
  }

  .page-title nav li+li::before {
    margin-right: 8px;
  }

  .page-title::after {
    height: 64%;
  }
}

/*--------------------------------------------------------------
# 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 {
  position: relative;
  padding-bottom: 40px;
  text-align: left;
}

.section-title-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(23, 36, 60, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background-color: rgba(23, 36, 60, 0.28);
}

.section-title h2 {
  width: 100%;
  max-width: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--brand-navy);
  font-family: var(--heading-font);
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.section-title h2::after {
  content: "";
  flex: 1 1 auto;
  min-width: 50px;
  height: 1px;
  background-color: rgba(23, 36, 60, 0.14);
  transform: scaleY(0.55);
  transform-origin: center;
}

.section-title p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(23, 36, 60, 0.65);
  font-size: 15px;
  line-height: 1.7;
}

.section-mini-title {
  position: relative;
  display: inline-block;
  margin: 0 0 24px;
  padding: 0 0 12px;
  color: var(--brand-navy);
  background: transparent;
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-mini-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 1px;
  background-color: currentColor;
  opacity: 0.82;
}

.section-mini-title--light {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 767px) {
  .section-title {
    padding-bottom: 30px;
  }

  .section-title h2 {
    margin-top: 10px;
    gap: 16px;
    font-size: clamp(27px, 7.5vw, 34px);
  }

  .section-title-kicker {
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background-color: #071326;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 190px;
  pointer-events: none;
  opacity: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.2) 52%, rgba(0, 0, 0, 0) 100%);
  transition: opacity 0.35s ease;
}

body.scrolled .hero::before {
  opacity: 0;
}


/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider {
  z-index: -4;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.045);
  transition: transform 7s linear;
}

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


/*--------------------------------------------------------------
# Hero Overlays
--------------------------------------------------------------*/
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(4, 13, 29, 0.52) 0%,
      rgba(4, 13, 29, 0.23) 42%,
      rgba(4, 13, 29, 0.1) 69%,
      rgba(4, 13, 29, 0.2) 100%
    );
}

.hero-bottom-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  height: 58%;
  pointer-events: none;
  background:
    linear-gradient(
      0deg,
      rgba(2, 9, 19, 0.82) 0%,
      rgba(2, 9, 19, 0.38) 44%,
      rgba(2, 9, 19, 0) 100%
    );
}


/*--------------------------------------------------------------
# Hero Container
--------------------------------------------------------------*/
.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 130px;
  padding-bottom: clamp(46px, 7vh, 82px);
}

.hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: end;
  gap: clamp(50px, 8vw, 135px);
}


/*--------------------------------------------------------------
# Hero Content
--------------------------------------------------------------*/
.hero-content {
  width: 100%;
  max-width: 800px;
  color: #ffffff;
}

.hero-text-wrapper {
  max-width: 790px;
  min-height: 184px;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.hero-content.is-changing .hero-text-wrapper {
  opacity: 0;
  transform: translateY(14px);
}

.hero-title {
  max-width: 790px;
  margin: 0 0 20px;
  color: #ffffff;
  font-family: var(--heading-font, "Inter", sans-serif);
  font-size: clamp(42px, 4.25vw, 66px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.18);
}

.hero-title-strong {
  font-weight: 700;
}

.hero-title-light {
  font-weight: 300;
}

.hero-description {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--default-font, "Inter", sans-serif);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 400;
  line-height: 1.65;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.16);
}


/*--------------------------------------------------------------
# Hero Pagination
--------------------------------------------------------------*/
.hero-pagination {
  width: min(100%, 330px);
  margin-top: 34px;
  display: grid;
  grid-template-columns: 28px minmax(90px, 1fr) 28px;
  align-items: center;
  gap: 13px;
  color: #ffffff;
}

.hero-current-slide,
.hero-total-slides {
  display: block;
  font-family: var(--default-font, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

.hero-total-slides {
  color: rgba(255, 255, 255, 0.52);
  text-align: right;
}

.hero-progress {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.28);
}

.hero-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background-color: #ffffff;
}

.hero-progress-bar.is-animating {
  animation: heroProgress 6s linear forwards;
}

@keyframes heroProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Hero Quote Card
--------------------------------------------------------------*/
.hero-quote-card {
  position: relative;
  width: 100%;
  padding: 28px;
  overflow: visible;
  color: var(--brand-ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-quote-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 250px;
  height: 250px;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 70%
    );
}

.hero-quote-header {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.hero-quote-heading {
  min-width: 0;
}

.hero-quote-heading h2 {
  margin: 0;
  color: var(--brand-navy);
  font-family: var(--heading-font, "Inter", sans-serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hero-quote-heading p {
  max-width: 320px;
  margin: 0;
  color: rgba(23, 36, 60, 0.64);
  font-size: 13px;
  line-height: 1.5;
}


/*--------------------------------------------------------------
# Hero Quote Form
--------------------------------------------------------------*/
.hero-quote-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form-group {
  margin: 0;
}

.hero-form-group label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-form-control {
  position: relative;
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #fbfdff;
  border: 1px solid rgba(14, 35, 68, 0.16);
  border-radius: 16px;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-form-control:focus-within {
  background-color: #ffffff;
  border-color: rgba(0, 105, 171, 0.58);
  box-shadow: 0 0 0 3px rgba(0, 105, 171, 0.08);
}

.hero-form-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 105, 171, 0.68);
}

.hero-form-icon svg {
  width: 19px;
  height: 19px;
}

.hero-form-control input,
.hero-form-control select {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 15px 0 0;
  color: var(--brand-ink);
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  font-family: var(--default-font, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 400;
}

.hero-form-control input::placeholder {
  color: rgba(23, 36, 60, 0.45);
  opacity: 1;
}

.hero-form-control select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
}

.hero-form-control select:invalid {
  color: rgba(23, 36, 60, 0.45);
}

.hero-form-control select option {
  color: var(--brand-ink);
  background-color: #ffffff;
}

.hero-select-control {
  overflow: visible;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-select-control:hover {
  border-color: rgba(0, 105, 171, 0.36);
}

.hero-custom-select-toggle {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 46px 0 0;
  display: flex;
  align-items: center;
  color: rgba(23, 36, 60, 0.52);
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  font-family: var(--default-font, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.hero-select-control.has-value .hero-custom-select-toggle {
  color: var(--brand-ink);
}

.hero-custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 30;
  padding: 7px;
  margin: 0;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  background-color: #ffffff;
  border: 1px solid rgba(14, 35, 68, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(14, 35, 68, 0.14);
  transform: translateY(-4px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.hero-select-control.is-open .hero-custom-select-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.hero-custom-select-menu button {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  color: var(--brand-ink);
  background-color: transparent;
  border: 0;
  border-radius: 11px;
  font-family: var(--default-font, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.hero-custom-select-menu button:hover,
.hero-custom-select-menu button.is-selected {
  color: var(--brand-blue);
  background-color: var(--brand-soft);
}

.hero-select-arrow {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-select-arrow svg {
  width: 100%;
  height: 100%;
}


/*--------------------------------------------------------------
# Hero Submit Button
--------------------------------------------------------------*/
.hero-quote-submit {
  width: 100%;
  min-height: 57px;
  margin-top: 3px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: var(--brand-navy);
  border: 0;
  border-radius: var(--button-radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  font-family: var(--default-font, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-quote-submit:hover {
  color: #ffffff;
  background-color: var(--brand-navy);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  opacity: var(--button-hover-opacity);
}


/*--------------------------------------------------------------
# Hero Navigation
--------------------------------------------------------------*/
.hero-navigation {
  position: absolute;
  top: 0;
  z-index: 5;
  width: min(7vw, 92px);
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
  transform: none;
  transition:
    opacity 0.3s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.hero-navigation svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.22));
}

.hero-navigation-prev {
  left: 0;
  justify-content: flex-start;
  padding-left: 18px;
}

.hero-navigation-next {
  right: 0;
  justify-content: flex-end;
  padding-right: 18px;
}

.hero-navigation:hover,
.hero-navigation:focus-visible {
  opacity: 1;
}

.hero-navigation:hover {
  color: #ffffff;
  background-color: transparent;
}

.hero-navigation:active {
  transform: scale(0.96);
}


/*--------------------------------------------------------------
# Hero Large Tablet
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero-container {
    padding-top: 120px;
    padding-bottom: 54px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 380px);
    gap: 48px;
  }

  .hero-title {
    font-size: clamp(40px, 4.8vw, 58px);
  }

  .hero-quote-card {
    padding: 24px;
    border-radius: 21px;
  }

  .hero-navigation {
    opacity: 0;
    width: min(20vw, 180px);
    height: 100%;
  }

  .hero-navigation-prev {
    left: 0;
  }

  .hero-navigation-next {
    right: 0;
  }
}


/*--------------------------------------------------------------
# Hero Tablet
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hero {
    min-height: 100svh;
  }

  .hero-container {
    min-height: 100svh;
    padding-top: 138px;
    padding-bottom: 50px;
    align-items: flex-end;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 34px;
  }

  .hero-content {
    order: 1;
    max-width: 640px;
    padding-top: 0;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero-title {
    max-width: 640px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(38px, 6.1vw, 54px);
  }

  .hero-description {
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-pagination {
    display: none;
  }

  .hero-quote-card {
    order: 2;
    width: min(100%, 520px);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 13, 29, 0.58) 0%,
        rgba(4, 13, 29, 0.24) 100%
      );
  }

  .hero-bottom-overlay {
    height: 75%;
    background:
      linear-gradient(
        0deg,
        rgba(2, 9, 19, 0.86) 0%,
        rgba(2, 9, 19, 0.5) 55%,
        rgba(2, 9, 19, 0.04) 100%
      );
  }

  .hero-navigation {
    top: 0;
  }
}


/*--------------------------------------------------------------
# Hero Mobile
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .hero {
    min-height: 0;
    display: block;
    background-color: #ffffff;
  }

  .hero::before {
    z-index: 3;
    height: 155px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0) 100%);
  }

  .hero-slider,
  .hero-slide {
    height: 38svh;
    min-height: 270px;
  }

  .hero-slider {
    z-index: 0;
  }

  .hero-slide img {
    object-position: center top;
  }

  .hero-overlay {
    z-index: 1;
    height: 38svh;
    min-height: 270px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, #ffffff 100%);
  }

  .hero-bottom-overlay {
    z-index: 2;
    top: 24svh;
    height: 22svh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 72%);
  }

  .hero-container {
    min-height: 0;
    padding-top: 32svh;
    padding-right: 33px;
    padding-bottom: 32px;
    padding-left: 33px;
    align-items: flex-start;
  }

  .hero-layout {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 26px;
  }

  .hero-content {
    order: 1;
    max-width: 100%;
    padding-top: 0;
    color: var(--brand-navy);
    text-align: center;
  }

  .hero-text-wrapper {
    width: 100%;
    min-height: 92px;
  }

  .hero-content.is-changing .hero-text-wrapper {
    transform: none;
  }

  .hero-title {
    max-width: 100%;
    margin: 0;
    color: var(--brand-navy);
    font-size: clamp(31px, 8.4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-shadow: none;
  }

  .hero-title br {
    display: none;
  }

  .hero-title-strong,
  .hero-title-light {
    display: inline;
  }

  .hero-title-strong::before {
    content: " ";
  }

  .hero-description {
    display: none;
  }

  .hero-pagination {
    display: none;
  }

  .hero-quote-card {
    order: 2;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-quote-card::before,
  .hero-quote-header {
    display: none;
  }

  .hero-quote-form {
    gap: 10px;
  }

  .hero-form-control {
    height: 64px;
    background-color: #ffffff;
    border: 1px solid rgba(14, 35, 68, 0.16);
    border-radius: 16px;
  }

  .hero-form-icon {
    display: none;
  }

  .hero-form-control input,
  .hero-form-control select {
    padding: 0 46px 0 14px;
    color: #17243c;
    font-size: 15px;
  }

  .hero-custom-select-toggle {
    padding-left: 14px;
    font-size: 15px;
  }

  .hero-form-control input::placeholder {
    color: rgba(23, 36, 60, 0.38);
  }

  .hero-form-control select:invalid {
    color: rgba(23, 36, 60, 0.38);
  }

  .hero-quote-submit {
    min-height: 64px;
    margin-top: 8px;
    color: #ffffff;
    background-color: var(--brand-navy);
    border-radius: var(--button-radius);
    box-shadow: 0 18px 38px rgba(0, 105, 171, 0.2);
    font-size: 16px;
  }

  .hero-navigation {
    top: 0;
    width: 12vw;
    height: 38svh;
    opacity: 0;
  }

  .hero-navigation svg {
    width: 32px;
    height: 32px;
  }

  .hero-navigation-prev {
    left: 0;
    padding-left: 8px;
  }

  .hero-navigation-next {
    right: 0;
    padding-right: 8px;
  }
}


/*--------------------------------------------------------------
# Hero Small Mobile
--------------------------------------------------------------*/
@media (max-width: 575px) {
  .hero-slider,
  .hero-slide {
    height: 36svh;
    min-height: 238px;
  }

  .hero-overlay {
    height: 36svh;
    min-height: 238px;
  }

  .hero-bottom-overlay {
    top: 23svh;
    height: 20svh;
  }

  .hero-container {
    padding-top: 31svh;
    padding-right: 28px;
    padding-bottom: 52px;
    padding-left: 28px;
  }

  .hero-layout {
    min-height: auto;
    gap: 18px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-title {
    font-size: clamp(25px, 7vw, 32px);
  }

  .hero-text-wrapper {
    min-height: 78px;
  }

  .hero-description {
    display: none;
  }

  .hero-pagination {
    display: none;
  }

  .hero-quote-card {
    padding: 0;
  }

  .hero-quote-form {
    gap: 11px;
  }

  .hero-quote-header {
    display: none;
  }

  .hero-form-icon {
    display: none;
  }

  .hero-form-control {
    height: 54px;
    border-radius: 15px;
  }

  .hero-form-control input,
  .hero-form-control select {
    padding-left: 13px;
    font-size: 14px;
  }

  .hero-custom-select-toggle {
    padding-left: 13px;
    font-size: 14px;
  }

  .hero-quote-submit {
    min-height: 56px;
    margin-top: 24px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.clients {
  padding: 44px 0;
  background: #ffffff;
  overflow: hidden;
}

.clients-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.clients-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: clientsMarquee 82s linear infinite;
}

.clients-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(26px, 4.2vw, 58px);
  padding-right: clamp(26px, 4.2vw, 58px);
}

.clients .client-logo {
  flex: 0 0 auto;
  width: clamp(118px, 10vw, 158px);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients .client-logo img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%) saturate(0.55);
  opacity: 0.58;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.clients .client-logo:hover img {
  filter: grayscale(0%) saturate(1);
  opacity: 1;
}

@keyframes clientsMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 767px) {
  .clients {
    padding: 20px 0;
  }

  .clients-group {
    gap: 28px;
    padding-right: 28px;
  }

  .clients .client-logo {
    width: 112px;
    height: 62px;
  }

  .clients .client-logo img {
    max-height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation-duration: 90s;
  }
}

/*--------------------------------------------------------------
# Reduced Motion
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide img,
  .hero-text-wrapper,
  .hero-navigation,
  .hero-progress-bar {
    animation: none !important;
    transition: none !important;
  }
}

.clients-grid {
  --cg-line: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 60px 0;
}


.clients-grid .clients-grid-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: transparent;
}

/* Responsive kolonlar */
@media (max-width: 991.98px) {
  .clients-grid .clients-grid-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .clients-grid .clients-grid-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.clients-grid .clients-grid-item {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 22px 18px;

  background: transparent;

  border-right: 1px solid var(--cg-line);
  border-bottom: 1px solid var(--cg-line);
}

/* Başlığın alt çizgisi */
.clients-grid .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #000000;
  margin: 10px auto 0;
  border-radius: 2px;
}

.clients-grid .clients-grid-item:nth-child(4n) {
  border-right: 0;
}

@media (max-width: 991.98px) {
  .clients-grid .clients-grid-item:nth-child(4n) {
    border-right: 1px solid var(--cg-line);
  }
  .clients-grid .clients-grid-item:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 575.98px) {
  .clients-grid .clients-grid-item:nth-child(3n) {
    border-right: 1px solid var(--cg-line);
  }
  .clients-grid .clients-grid-item:nth-child(2n) {
    border-right: 0;
  }
}

.clients-grid .clients-grid-item:nth-last-child(-n + 4) {
  border-bottom: 0;
}

@media (max-width: 991.98px) {
  .clients-grid .clients-grid-item:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--cg-line);
  }
  .clients-grid .clients-grid-item:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .clients-grid .clients-grid-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--cg-line);
  }
  .clients-grid .clients-grid-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

.clients-grid .clients-grid-item img {
  max-width: 160px;
  width: 100%;
  height: 90px;
  object-fit: contain;

  filter: grayscale(100%);
  opacity: .75;

  transition: filter .25s ease,
              opacity .25s ease,
              transform .25s ease;
}

/* Hover: SADECE img */
.clients-grid .clients-grid-item:hover img {
  opacity: 1;
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Hareket hassasiyeti */
@media (prefers-reduced-motion: reduce) {
  .clients-grid .clients-grid-item img {
    transition: none;
  }
}

.clients-grid .section-title h2::before, .clients-grid .section-title h2::after {
    display: none;
}


/*--------------------------------------------------------------
# About Intro Section
--------------------------------------------------------------*/
.about-intro {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  background-color: var(--background-color);
}


/*--------------------------------------------------------------
# About Intro Content
--------------------------------------------------------------*/
.about-intro .about-intro-content {
  position: relative;
  max-width: 650px;
}

.about-intro .about-intro-eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  padding-bottom: 11px;
  color: var(--heading-color);
  background: transparent;
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.about-intro .about-intro-eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 2px;
  background-color: var(--heading-color);
}

.about-intro .about-intro-content h2 {
  max-width: 650px;
  margin: 0 0 22px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.about-intro .about-intro-content h2 strong {
  display: block;
  color: var(--heading-color);
  font-weight: 600;
}

.about-intro .about-intro-content h5 {
  max-width: 500px;
  margin: 0 0 25px;
  color: color-mix(
    in srgb,
    var(--heading-color),
    transparent 16%
  );
  font-family: var(--heading-font);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.about-intro .about-intro-content p {
  max-width: 535px;
  margin: 0 0 18px;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 24%
  );
  font-family: var(--default-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
}

.about-intro .about-intro-content p:last-of-type {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# About Intro Button
--------------------------------------------------------------*/

.about-intro .about-intro-action {
  margin-top: 36px;
}

.about-intro .about-intro-button {
  width: fit-content;
  min-width: 220px;
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--button-icon-gap);
  color: #ffffff;
  background-color: var(--brand-navy);
  border: 1px solid var(--brand-navy);
  border-radius: var(--button-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    opacity 0.25s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.about-intro .about-intro-button-icon {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  background-color: transparent;
  border-radius: 0;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.about-intro .about-intro-button-icon svg {
  width: 11px;
  height: 11px;
  transition: transform 0.3s ease;
}

.about-intro .about-intro-button:hover {
  color: #ffffff;
  background-color: var(--brand-navy);
  border-color: var(--brand-navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: var(--button-hover-opacity);
  transform: none;
}

.about-intro .about-intro-button:hover .about-intro-button-icon {
  color: currentColor;
  background-color: transparent;
}

.about-intro .about-intro-button:hover .about-intro-button-icon svg {
  transform: rotate(45deg);
}


/*--------------------------------------------------------------
# About Intro Visual
--------------------------------------------------------------*/
.about-intro .about-intro-visual {
  position: relative;
  width: 100%;
  max-width: 650px;
  min-height: auto;
  margin-left: auto;
  padding: 20px;
}


/*--------------------------------------------------------------
# About Intro Main Image
--------------------------------------------------------------*/
.about-intro .about-intro-main-image {
  position: relative;
  width: 100%;
  height: 565px;
  overflow: hidden;
  background-color: #eeeeee;
  border: 0;
}

.about-intro .about-intro-main-image::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: border-color 0.45s ease;
}

.about-intro .about-intro-visual:hover .about-intro-main-image::before {
  border-color: rgba(255, 255, 255, 0.42);
}

.about-intro .about-intro-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-intro .about-intro-visual:hover
.about-intro-main-image img {
  transform: scale(1.025);
}


/*--------------------------------------------------------------
# About Intro Decorative Line
--------------------------------------------------------------*/
.about-intro .about-intro-visual-line {
  display: none;
}


/*--------------------------------------------------------------
# About Intro Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .about-intro {
    padding: 100px 0;
  }

  .about-intro .about-intro-visual {
    min-height: auto;
    padding: 18px;
  }

  .about-intro .about-intro-main-image {
    height: 510px;
  }

}

@media (max-width: 991px) {
  .about-intro {
    padding: 85px 0;
  }

  .about-intro .about-intro-content {
    max-width: 680px;
  }

  .about-intro .about-intro-content h2,
  .about-intro .about-intro-content h5,
  .about-intro .about-intro-content p {
    max-width: 100%;
  }

  .about-intro .about-intro-visual {
    max-width: 720px;
    min-height: auto;
    margin: 20px auto 0;
    padding: 18px;
  }

  .about-intro .about-intro-main-image {
    height: 530px;
  }

}

@media (max-width: 767px) {
  .about-intro {
    padding: 72px 0;
  }

  .about-intro .about-intro-eyebrow {
    margin-bottom: 18px;
  }

  .about-intro .about-intro-content h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 9vw, 48px);
  }

  .about-intro .about-intro-content h5 {
    margin-bottom: 21px;
    font-size: 18px;
  }

  .about-intro .about-intro-content p {
    font-size: 14px;
    line-height: 1.75;
  }

  .about-intro .about-intro-action {
    margin-top: 29px;
  }

  .about-intro .about-intro-visual {
    min-height: auto;
    margin-top: 10px;
    padding: 12px;
  }

  .about-intro .about-intro-main-image {
    height: 460px;
  }

  .about-intro .about-intro-visual-line {
    width: calc(100% - 28px);
    height: calc(100% - 30px);
    transform: translate(9px, 0);
  }
}

@media (max-width: 575px) {
  .about-intro {
    padding: 34px 0 48px;
  }

  .about-intro .about-intro-content h2 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .about-intro .about-intro-content h5 {
    font-size: 17px;
  }

  .about-intro .about-intro-button {
    min-height: 48px;
  }

  .about-intro .about-intro-visual {
    padding: 8px;
  }

  .about-intro .about-intro-main-image {
    height: 390px;
  }

  .about-intro .about-intro-main-image::before {
    inset: 8px;
  }

  .about-intro .about-intro-visual-line {
    width: calc(100% - 18px);
    height: calc(100% - 20px);
    transform: translate(7px, 0);
  }
}

@media (max-width: 390px) {
  .about-intro .about-intro-main-image {
    height: 350px;
  }

}

/*--------------------------------------------------------------
# Services Info Section
--------------------------------------------------------------*/
.services-info {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: #f6f7f8;
}

.services-info::before {
  content: "BRANŞ";
  position: absolute;
  top: 40px;
  right: -25px;
  color: transparent;
  font-size: clamp(110px, 15vw, 240px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -10px;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(18, 33, 48, 0.035);
  pointer-events: none;
}

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

/*--------------------------------------------------------------
# Services Info Heading
--------------------------------------------------------------*/
.services-info .services-info-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.services-info .services-info-heading-content {
  flex: 0 0 auto;
}

.services-info .services-info-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #a77b3e;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.services-info .services-info-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #a77b3e;
}

.services-info .services-info-heading h2 {
  margin: 0;
  color: #172434;
  font-size: clamp(38px, 4vw, 60px);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -2px;
}

.services-info .services-info-heading h2 strong {
  font-weight: 400;
  color: #214e87;
}

.services-info .services-info-heading > p {
  max-width: 480px;
  margin: 0 0 5px;
  color: #68717c;
  font-size: 16px;
  line-height: 1.8;
}

/*--------------------------------------------------------------
# Services Info Card
--------------------------------------------------------------*/
.services-info .services-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 5px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(14, 35, 68, 0.1);
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Services Info Image
--------------------------------------------------------------*/
.services-info .services-info-image {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  background: #dfe3e7;
  border-radius: 6px;
}

.services-info .services-info-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(12, 24, 37, 0.03);
  transition: background 0.4s ease;
}

.services-info .services-info-image:hover::before {
  background: rgba(12, 24, 37, 0.11);
}

.services-info .services-info-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0);
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.services-info .services-info-image:hover::after {
  border-color: rgba(255, 255, 255, 0.4);
}

.services-info .services-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.5s ease;
}

.services-info .services-info-image:hover img {
  transform: scale(1.06);
  filter: saturate(0.95) contrast(1.04);
}

/*--------------------------------------------------------------
# Services Info Content
--------------------------------------------------------------*/
.services-info .services-info-content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 250px;
  padding: 22px 23px 20px;
  overflow: hidden;
}

.services-info .services-info-content::before {
  display: none;
}

.services-info .services-info-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.services-info .services-info-number {
  position: absolute;
  top: -17px;
  right: -8px;
  z-index: -1;
  color: rgba(14, 35, 68, 0.07);
  font-size: 66px;
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -5px;
  pointer-events: none;
}

.services-info .services-info-category {
  position: relative;
  padding-left: 0;
  color: var(--brand-blue);
  font-family: var(--default-font);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.services-info .services-info-category::before {
  display: none;
}

.services-info .services-info-card h3 {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 0 14px;
  color: var(--brand-navy);
  font-size: 28px;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.7px;
}

.services-info .services-info-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-info .services-info-card h3 small {
  display: block;
  margin-top: 4px;
  color: rgba(23, 36, 60, 0.68);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

.services-info .services-info-card h3 a:hover {
  color: var(--brand-blue);
}

.services-info .services-info-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  color: rgba(23, 36, 60, 0.68);
  font-family: var(--default-font);
  font-size: 14px;
  line-height: 1.65;
}

.services-info .services-info-link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: auto;
  padding-top: 15px;
  color: var(--brand-navy);
  font-family: var(--default-font);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.6px;
  text-decoration: none;
  text-transform: uppercase;
  border-top: 1px solid rgba(14, 35, 68, 0.12);
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.services-info .services-info-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 19px;
  transition: transform 0.35s ease;
}

.services-info .services-info-link:hover {
  color: var(--brand-blue);
  border-color: rgba(0, 105, 171, 0.3);
}

.services-info .services-info-link:hover i {
  transform: translateX(6px);
}

/*--------------------------------------------------------------
# Services Info Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .services-info {
    padding: 90px 0;
  }

  .services-info .services-info-heading {
    gap: 40px;
  }

  .services-info .services-info-heading > p {
    max-width: 390px;
  }

  .services-info .services-info-image {
    height: 205px;
  }

  .services-info .services-info-card h3 {
    font-size: 27px;
  }
}

@media (max-width: 991px) {
  .services-info .services-info-heading {
    display: block;
    margin-bottom: 48px;
  }

  .services-info .services-info-heading > p {
    max-width: 620px;
    margin-top: 24px;
  }

  .services-info .services-info-image {
    height: 215px;
  }
}

@media (max-width: 767px) {
  .services-info {
    padding: 70px 0;
  }

  .services-info::before {
    top: 30px;
    right: -10px;
    font-size: 100px;
    letter-spacing: -5px;
  }

  .services-info .services-info-heading {
    margin-bottom: 38px;
  }

  .services-info .services-info-heading h2 {
    font-size: 40px;
    letter-spacing: -1.3px;
  }

  .services-info .services-info-heading > p {
    margin-top: 20px;
    font-size: 15px;
  }

  .services-info .services-info-image {
    height: 200px;
  }

  .services-info .services-info-content {
    min-height: 240px;
    padding: 20px 21px 19px;
  }

  .services-info .services-info-number {
    top: -14px;
    font-size: 60px;
  }

  .services-info .services-info-card h3 {
    font-size: 27px;
  }
}

@media (max-width: 420px) {
  .services-info .services-info-image {
    height: 185px;
  }

  .services-info .services-info-content {
    min-height: 230px;
  }

  .services-info .services-info-card h3 {
    font-size: 25px;
  }

  .services-info .services-info-category {
    font-size: 9px;
    letter-spacing: 1.3px;
  }
}

/*--------------------------------------------------------------
# CTA Banner
--------------------------------------------------------------*/
.cta-banner {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}

.cta-banner-wrapper {
  position: relative;
  width: min(100% - 48px, 1280px);
  min-height: 410px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #171b20;
  border-radius: 12px;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: none;
}

.cta-banner-wrapper:hover .cta-banner-bg {
  transform: none;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 17, 22, 0.80) 0%, rgba(15, 19, 24, 0.70) 52%, rgba(17, 21, 26, 0.60) 100%),
    linear-gradient(0deg, rgba(8, 11, 15, 0.20), rgba(8, 11, 15, 0.20));
}

.cta-banner-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(8, 11, 15, 0.205);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cta-banner-wrapper:hover::after {
  opacity: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 50px 0;
}

.cta-banner-text {
  max-width: 900px;
}

.cta-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
}

.cta-banner-label svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.cta-banner h2 {
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 3.7vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2.2px;
}

.cta-banner p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  margin-top: 22px;
}

.cta-banner-button {
  width: fit-content;
  min-width: 180px;
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--button-icon-gap);
  color: #171b20;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: var(--button-radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: opacity 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.cta-banner-button > span:first-child {
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 650;
}

.cta-banner-button-icon {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.cta-banner-button-icon svg {
  width: 11px;
  height: 11px;
  transition: transform 0.25s ease;
}

.cta-banner-button:hover {
  color: #171b20;
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  opacity: var(--button-hover-opacity);
}

.cta-banner-button:hover .cta-banner-button-icon svg {
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
# CTA Banner Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .cta-banner { padding: 50px 0; }
  .cta-banner-wrapper { width: min(100% - 56px, 1120px); min-height: 395px; }
  .cta-banner-content { width: min(100% - 56px, 1120px); padding: 48px 0; }
}

@media (max-width: 991px) {
  .cta-banner-wrapper { width: min(100% - 48px, 900px); min-height: 380px; }
  .cta-banner-bg { object-position: 65% center; }
  .cta-banner-overlay {
    background: linear-gradient(90deg, rgba(13, 17, 22, 0.84) 0%, rgba(15, 19, 24, 0.72) 58%, rgba(17, 21, 26, 0.60) 100%);
  }
  .cta-banner-content { width: min(100% - 48px, 900px); padding: 44px 0; }
  .cta-banner-text { max-width: 720px; }
}

@media (max-width: 767px) {
  .cta-banner { padding: 34px 0; }
  .cta-banner-wrapper { width: calc(100% - 40px); min-height: 400px; border-radius: 10px; }
  .cta-banner-bg { object-position: 68% center; }
  .cta-banner-overlay {
    background: linear-gradient(0deg, rgba(10, 14, 18, 0.90) 0%, rgba(12, 16, 21, 0.74) 58%, rgba(14, 18, 23, 0.64) 100%);
  }
  .cta-banner-content { width: calc(100% - 40px); padding: 38px 0; }
  .cta-banner-label { margin-bottom: 16px; font-size: 11px; }
  .cta-banner h2 { font-size: clamp(29px, 8vw, 38px); line-height: 1.08; letter-spacing: -1.2px; }
  .cta-banner p { margin-top: 14px; font-size: 14px; }
  .cta-banner-actions { margin-top: 20px; }
  .cta-banner-button { min-width: 174px; min-height: 42px; padding: 0 18px; }
  .cta-banner-button-icon { width: 13px; height: 13px; flex-basis: 13px; }
}

@media (max-width: 480px) {
  .cta-banner { padding: 28px 0; }
  .cta-banner-wrapper { width: calc(100% - 32px); min-height: 385px; }
  .cta-banner-content { width: calc(100% - 32px); padding: 34px 0; }
  .cta-banner h2 { font-size: 28px; }
}

/*--------------------------------------------------------------
# Insurance Content
--------------------------------------------------------------*/
.insurance-content {
  position: relative;
  padding: 65px 0;
  overflow: hidden;
  background-color: #ffffff;
}

.insurance-content-wrapper {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.insurance-content .row {
  min-height: auto;
}

.insurance-content-block + .insurance-content-block {
  margin-top: 90px;
}


/*--------------------------------------------------------------
# Insurance Content Image
--------------------------------------------------------------*/
.insurance-content-image {
  position: relative;
  width: 100%;
  height: 460px;
  min-height: 0;
  overflow: hidden;
  background-color: #e9edf1;
  border-radius: 0;
}

.insurance-content-image::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: border-color 0.45s ease;
}

.insurance-content-image:hover::before {
  border-color: rgba(255, 255, 255, 0.42);
}

.insurance-content-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.insurance-content-image:hover img {
  transform: scale(1.025);
}

.insurance-content-frame {
  display: none;
}


/*--------------------------------------------------------------
# Insurance Content Text
--------------------------------------------------------------*/
.insurance-content-text {
  height: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 8px;
  background-color: #ffffff;
}

.insurance-content-heading {
  max-width: 620px;
}

.insurance-content-label {
  display: block;
  margin-bottom: 12px;
  color: #0b2b54;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.insurance-content-line {
  display: block;
  width: 64px;
  height: 1px;
  margin-bottom: 18px;
  background-color: #0b2b54;
}

.insurance-content h2 {
  max-width: 620px;
  margin: 0;
  color: #101010;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1.6px;
}

.insurance-content h2 strong {
  display: block;
  color: #0b2b54;
  font-weight: 700;
}

.insurance-content-lead {
  max-width: 580px;
  margin: 16px 0 0;
  color: #434a52;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

/*--------------------------------------------------------------
# Insurance Content List
--------------------------------------------------------------*/
.insurance-content-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 22px;
}

.insurance-content-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(11, 43, 84, 0.1);
}

.insurance-content-item:first-child {
  border-top: 1px solid rgba(11, 43, 84, 0.1);
}

.insurance-content-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  background-color: var(--brand-soft);
  border-radius: 50%;
  font-size: 17px;
}

.insurance-content-item > div {
  flex: 1;
  min-width: 0;
}

.insurance-content-arrow {
  flex: 0 0 auto;
  align-self: center;
  color: var(--brand-navy);
  font-size: 12px;
  opacity: 0.72;
}

/* İkinci içerik bloğu: lineer numaralı liste */
.insurance-content-block--secondary .insurance-content-text {
  height: 460px;
  min-height: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.insurance-content-feature-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
  border-top: 1px solid rgba(14, 35, 68, 0.12);
}

.insurance-content-feature-card {
  position: relative;
  min-height: 0;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 15px;
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(14, 35, 68, 0.12);
  border-radius: 0;
}

.insurance-content-feature-card > span {
  position: static;
  grid-row: 1 / span 2;
  width: auto;
  height: auto;
  display: block;
  color: rgba(14, 35, 68, 0.16);
  background: transparent;
  border-radius: 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1;
}

.insurance-content-feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 4px;
  color: var(--brand-navy);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
}

.insurance-content-feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(23, 36, 60, 0.65);
  font-size: 12px;
  line-height: 1.45;
}

.insurance-content-item h3 {
  margin: 1px 0 5px;
  color: #171717;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.insurance-content-item p {
  margin: 0;
  color: #858b92;
  font-size: 13px;
  line-height: 1.45;
}


/*--------------------------------------------------------------
# Insurance Content Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .insurance-content {
    padding: 58px 0;
  }

  .insurance-content-text {
    min-height: 440px;
  }

  .insurance-content-image {
    height: 440px;
    min-height: 0;
  }

  .insurance-content-image img {
    min-height: 0;
  }

  .insurance-content-image::before {
    inset: 10px;
  }

  .insurance-content-text {
    padding: 24px 4px;
  }

  .insurance-content h2 {
    font-size: 40px;
  }

  .insurance-content-block--secondary .insurance-content-text {
    height: 440px;
    min-height: 0;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

@media (max-width: 991px) {
  .insurance-content-wrapper {
    border-radius: 0;
  }

  .insurance-content .row {
    min-height: auto;
  }

  .insurance-content-image {
    height: 400px;
    min-height: 0;
  }

  .insurance-content-image img {
    min-height: 0;
  }

  .insurance-content-text {
    min-height: auto;
    padding: 34px 4px 0;
  }

  .insurance-content h2 {
    max-width: 690px;
  }

  .insurance-content-lead,
  .insurance-content-description {
    max-width: 680px;
  }

  .insurance-content-block + .insurance-content-block {
    margin-top: 70px;
  }

  .insurance-content-block--secondary .insurance-content-text {
    height: auto;
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .insurance-content {
    padding: 48px 0;
  }

  .insurance-content-wrapper {
    border-radius: 0;
  }

  .insurance-content-image {
    height: 300px;
    min-height: 0;
  }

  .insurance-content-image img {
    min-height: 0;
  }

  .insurance-content-frame {
    inset: 15px;
  }

  .insurance-content-text {
    padding: 28px 2px 0;
  }

  .insurance-content-label {
    margin-bottom: 15px;
    font-size: 11px;
    letter-spacing: 2.5px;
  }

  .insurance-content-line {
    width: 52px;
    margin-bottom: 17px;
  }

  .insurance-content h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }

  .insurance-content-lead {
    margin-top: 16px;
    font-size: 15px;
  }

  .insurance-content-description {
    margin-top: 13px;
  }

  .insurance-content-description p {
    font-size: 14px;
    line-height: 1.7;
  }

  .insurance-content-list {
    margin-top: 21px;
  }

  .insurance-content-item {
    gap: 13px;
    padding: 14px 0;
  }

  .insurance-content-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .insurance-content-block + .insurance-content-block {
    margin-top: 58px;
  }

  .insurance-content-feature-grid {
    gap: 0;
    margin-top: 21px;
  }

  .insurance-content-feature-card {
    min-height: 0;
    padding: 13px 0;
  }
}

@media (max-width: 480px) {
  .insurance-content {
    padding: 40px 0;
  }

  .insurance-content-image {
    height: 260px;
    min-height: 0;
  }

  .insurance-content-image img {
    min-height: 0;
  }

  .insurance-content-image::before {
    inset: 8px;
  }

  .insurance-content-text {
    padding: 26px 0 0;
  }

  .insurance-content h2 {
    font-size: 32px;
  }

  .insurance-content-item h3 {
    font-size: 15px;
  }

  .insurance-content-item p {
    font-size: 13px;
  }

  .insurance-content-feature-grid {
    gap: 0;
  }

  .insurance-content-feature-card {
    min-height: auto;
  }
}

/* Global mini title normalization for section-specific content */
.about-intro .section-mini-title,
.cta-banner .section-mini-title,
.insurance-content .section-mini-title {
  position: relative;
  display: inline-block;
  margin: 0 0 24px;
  padding: 0 0 12px;
  color: var(--brand-navy);
  background: transparent;
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cta-banner .section-mini-title--light {
  color: rgba(255, 255, 255, 0.82);
}

.about-intro .section-mini-title::after,
.cta-banner .section-mini-title::after,
.insurance-content .section-mini-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 1px;
  background-color: currentColor;
  opacity: 0.82;
}

@media (max-width: 767px) {
  .about-intro .section-mini-title,
  .cta-banner .section-mini-title,
  .insurance-content .section-mini-title {
    margin-bottom: 20px;
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
  color: var(--brand-blue);
  font-weight: 600;
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  color: var(--accent-color);
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 30px 0;
  cursor: pointer;
  gap: 0;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
  color: var(--brand-blue);
  transform: none;
}

.faq .faq-item .faq-header:hover .faq-toggle {
  transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 78px;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: rgba(14, 35, 68, 0.5);
  transition: all 0.3s ease;
  letter-spacing: -0.03em;
}

.faq .faq-item .faq-header .faq-number::before {
  display: none;
}

.faq .faq-item .faq-header .faq-number::after {
  content: "/ 05";
  display: inline;
  color: currentColor;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  opacity: 0.42;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--heading-color);
  transition: all 0.3s ease;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-right: 20px;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 32px 32px 78px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 30px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 66px;
    gap: 4px;
    font-size: 16px;
  }

  .faq .faq-item .faq-header .faq-number::after {
    font-size: 9px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1.1rem;
    margin-right: 15px;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 28px 28px 66px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 25px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 58px;
    gap: 3px;
    font-size: 14px;
  }

  .faq .faq-item .faq-header .faq-number::after {
    font-size: 8px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
    margin-right: 10px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 18px 25px 58px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Hasar Destek Section
--------------------------------------------------------------*/
.damage-support {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background-color: #ffffff;
}

/*--------------------------------------------------------------
# Sol İçerik
--------------------------------------------------------------*/
.damage-support-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 0;
}

.damage-support-main {
  width: 100%;
  max-width: 660px;
}

.damage-support-title {
  max-width: 640px;
  margin: 0;
  color: #111111;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.damage-support-title strong {
  color: #050505;
  font-weight: 650;
}

.damage-support-description {
  max-width: 600px;
  margin: 17px 0 0;
  color: #707070;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.damage-support-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.damage-support-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #181818;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.damage-support-list li:first-child span:last-child,
.damage-support-list li:nth-child(2) span:last-child {
  font-weight: 650;
}

.damage-support-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #222222;
  font-size: 15px;
}

.damage-support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--button-icon-gap);
  min-height: 46px;
  margin-top: 28px;
  padding: 0 22px;
  border: 1px solid var(--brand-navy);
  border-radius: var(--button-radius);
  background-color: var(--brand-navy);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    opacity 0.25s ease,
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.damage-support-button i {
  font-size: 18px;
}

.damage-support-button:hover {
  transform: none;
  background-color: var(--brand-navy);
  color: #ffffff;
  opacity: var(--button-hover-opacity);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/*--------------------------------------------------------------
# Sol Alt Bilgiler
--------------------------------------------------------------*/
.damage-support-bottom {
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 720px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e4e4e4;
}

.damage-support-bottom-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
  color: #222222;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.damage-support-bottom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: #626262;
  font-size: 17px;
}

.damage-support-bottom-divider {
  display: block;
  width: 1px;
  height: 36px;
  background-color: #dddddd;
}

/*--------------------------------------------------------------
# Sağ Görsel
--------------------------------------------------------------*/
.damage-support-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  min-height: 0;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 52% 42%, rgba(0, 105, 171, 0.22), transparent 36%),
    linear-gradient(135deg, #f7fbff 0%, #eef6fc 48%, #e9eef4 100%);
}

.damage-support-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 5;
  pointer-events: none;
  border: 1px solid rgba(17, 24, 39, 0);
  border-radius: 12px;
  transition: border-color 0.45s ease;
}

.damage-support-image-wrapper:hover::before {
  border-color: rgba(255, 255, 255, 0.42);
}

.damage-support-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  object-fit: cover;
  object-position: center;
  filter: none;
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.damage-support-image-wrapper:hover .damage-support-image {
  transform: scale(1.025);
}

.damage-support-badge {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  color: #252525;
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(14, 35, 68, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.damage-support-badge i {
  color: #313131;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .damage-support {
    padding: 48px 0;
  }

  .damage-support-title {
    font-size: clamp(32px, 3.6vw, 42px);
  }

  .damage-support-description {
    font-size: 16px;
  }

  .damage-support-image-wrapper,
  .damage-support-image {
    height: auto;
  }

  .damage-support-image-wrapper {
    height: 480px;
  }
}

@media (max-width: 991px) {
  .damage-support {
    padding: 54px 0;
  }

  .damage-support-content {
    padding: 0;
  }

  .damage-support-main,
  .damage-support-bottom {
    max-width: 100%;
  }

  .damage-support-title {
    font-size: clamp(31px, 5vw, 40px);
  }

  .damage-support-image-wrapper {
    margin-top: 15px;
  }

  .damage-support-image-wrapper,
  .damage-support-image {
    height: auto;
  }

  .damage-support-image-wrapper {
    height: 460px;
  }
}

@media (max-width: 767px) {
  .damage-support {
    padding: 46px 0;
  }

  .damage-support-title {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -1.8px;
  }

  .damage-support-description {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .damage-support-list {
    gap: 14px;
    margin-top: 25px;
  }

  .damage-support-list li {
    gap: 11px;
    font-size: 16px;
  }

  .damage-support-check {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .damage-support-button {
    min-height: 48px;
    margin-top: 24px;
    padding: 0 20px;
    font-size: 14px;
  }

  .damage-support-bottom {
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
    padding-top: 22px;
  }

  .damage-support-bottom-item {
    flex: 1;
    align-items: flex-start;
    font-size: 12px;
  }

  .damage-support-bottom-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .damage-support-bottom-divider {
    height: 44px;
  }

  .damage-support-image-wrapper {
    height: 360px;
  }

  .damage-support-image {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .damage-support-image-wrapper {
    border-radius: 18px;
  }

  .damage-support-badge {
    top: 20px;
    right: 20px;
    min-height: 34px;
    padding: 0 14px;
    font-size: 12px;
  }

}

@media (max-width: 575px) {
  .damage-support {
    padding: 40px 0;
  }

  .damage-support-title {
    font-size: 30px;
    letter-spacing: -1.3px;
  }

  .damage-support-list li {
    align-items: flex-start;
  }

  .damage-support-check {
    margin-top: 1px;
  }

  .damage-support-button {
    width: 100%;
  }

  .damage-support-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .damage-support-bottom-divider {
    width: 100%;
    height: 1px;
  }

  .damage-support-bottom-item {
    width: 100%;
    align-items: center;
    font-size: 13px;
  }

  .damage-support-image-wrapper {
    height: 320px;
  }

  .damage-support-image {
    width: 100%;
    height: 100%;
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Client Section
--------------------------------------------------------------*/

.client {
  position: relative;
  overflow: hidden;
  padding: 50px 0 66px;
  background: #ffffff;
}

.client .client-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #ffffff;
}

.client .client-item {
  position: relative;
  min-width: 0;
  min-height: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 22px;
  overflow: hidden;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.client .client-item[data-magic] {
  opacity: 0;
  transform: translateY(18px);
}

.client .client-item[data-magic].is-visible {
  animation: client-logo-reveal 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes client-logo-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .client .client-item[data-magic],
  .client .client-item[data-magic].is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.client .client-item:not(:nth-child(3n)) {
  border-right: 1px solid #e5edf3;
}

.client .client-item:nth-child(-n + 21) {
  border-bottom: 1px solid #e5edf3;
}

.client .client-logo {
  position: relative;
  width: 100%;
  height: 66px;
  flex: 0 0 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.client .client-logo::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 34px;
  height: 1px;
  background: #d4dee5;
  opacity: 0.9;
  transform: translateX(-50%);
  transition:
    width 0.22s ease,
    background-color 0.22s ease;
}

.client .client-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 170px;
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.58;
  transform: none;
  transition:
    filter 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.client .client-item h3 {
  display: none;
}

.client .client-item:hover {
  background: #ffffff;
  box-shadow: none;
}

.client .client-item:hover .client-logo::after {
  width: 54px;
  background: #0069ab;
}

.client .client-item:hover .client-logo img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Client Responsive
--------------------------------------------------------------*/

@media (max-width: 1199px) {
  .client .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .client {
    padding: 44px 0 58px;
  }

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

  .client .client-item:not(:nth-child(3n)) {
    border-right: 0;
  }

  .client .client-item:not(:nth-child(2n)) {
    border-right: 1px solid #e5edf3;
  }

  .client .client-item:nth-child(-n + 21) {
    border-bottom: 0;
  }

  .client .client-item:nth-child(-n + 22) {
    border-bottom: 1px solid #e5edf3;
  }
}

@media (max-width: 575px) {
  .client {
    padding: 38px 0 52px;
  }

  .client .client-item {
    min-height: 118px;
    padding: 22px 16px;
  }

  .client .client-logo {
    height: 54px;
    flex-basis: 54px;
  }

  .client .client-logo img {
    max-width: 132px;
    max-height: 42px;
  }

  .client .client-logo::after {
    bottom: -10px;
    width: 28px;
  }

  .client .client-item:hover .client-logo::after {
    width: 46px;
  }
}

@media (max-width: 389px) {
  .client .client-grid {
    grid-template-columns: 1fr;
  }

  .client .client-item {
    min-height: 110px;
    border-right: 0 !important;
    border-bottom: 1px solid #e5edf3 !important;
  }

  .client .client-item:last-child {
    border-bottom: 0 !important;
  }

  .client .client-logo img {
    max-width: 150px;
    max-height: 44px;
  }
}

/*--------------------------------------------------------------
# Vision Mission Section
--------------------------------------------------------------*/
.vision-mission {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.vision-mission::before {
  position: absolute;
  top: 78px;
  right: max(24px, calc((100vw - 1180px) / 2));
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.vision-mission .container {
  position: relative;
}


/*--------------------------------------------------------------
# Vision Mission Header
--------------------------------------------------------------*/
.vision-mission-header {
  max-width: 1040px;
  margin-bottom: 100px;
}

.vision-mission-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d9d9d9;
}

.vision-mission-eyebrow {
  display: inline-block;
  color: #171717;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.vision-mission-header-number {
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.vision-mission-header h1 {
  max-width: 980px;
  margin: 0 0 30px;
  color: #161616;
  font-size: clamp(44px, 5.4vw, 78px);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -3.2px;
}

.vision-mission-header h1 strong {
  display: block;
  font-weight: 650;
}

.vision-mission-header > p {
  max-width: 760px;
  margin: 0;
  color: #626262;
  font-size: 17px;
  line-height: 1.8;
}


/*--------------------------------------------------------------
# Vision Mission Content
--------------------------------------------------------------*/
.vision-mission-content {
  border-top: 1px solid #1c1c1c;
}

.vision-mission-item {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  border-bottom: 1px solid #d7d7d7;
}

.vision-mission-item,
.vision-mission-principles,
.vision-mission-statement {
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.vision-mission-item-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 470px;
  padding: 42px 40px 42px 0;
  border-right: 1px solid #d7d7d7;
}

.vision-mission-item-number {
  color: #999999;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.vision-mission-item-title {
  color: #171717;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.vision-mission-item-main {
  padding: 42px 0 48px 70px;
}

.vision-mission-item-main h2 {
  max-width: 850px;
  margin: 0 0 75px;
  color: #191919;
  font-size: clamp(30px, 3.4vw, 49px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -1.7px;
}

.vision-mission-item-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  max-width: 880px;
}

.vision-mission-item-text p {
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.85;
}


/*--------------------------------------------------------------
# Vision Mission Principles
--------------------------------------------------------------*/
.vision-mission-principles {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  margin-top: 120px;
  padding-top: 90px;
  border-top: 1px solid #1a1a1a;
}

.vision-mission-principles-heading h2 {
  max-width: 470px;
  margin: 26px 0 0;
  color: #181818;
  font-size: clamp(36px, 4.2vw, 59px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -2.2px;
}

.vision-mission-principles-heading h2 strong {
  display: block;
  font-weight: 650;
}

.vision-mission-principles-list {
  border-top: 1px solid #d4d4d4;
}

.vision-mission-principle-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid #d4d4d4;
}

.vision-mission-principle-number {
  padding-top: 5px;
  color: #929292;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
}

.vision-mission-principle-content h3 {
  margin: 0 0 12px;
  color: #181818;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.vision-mission-principle-content p {
  max-width: 620px;
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.75;
}


/*--------------------------------------------------------------
# Vision Mission Statement
--------------------------------------------------------------*/
.vision-mission-statement {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  margin-top: 120px;
  padding-top: 45px;
  border-top: 1px solid #1b1b1b;
}

.vision-mission-statement-label {
  color: #181818;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.vision-mission-statement p {
  max-width: 830px;
  margin: 0;
  color: #1b1b1b;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -1.3px;
}


/*--------------------------------------------------------------
# Vision Mission Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .vision-mission {
    padding: 100px 0;
  }

  .vision-mission-header {
    margin-bottom: 80px;
  }

  .vision-mission-item {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .vision-mission-item-main {
    padding-left: 50px;
  }

  .vision-mission-principles {
    gap: 70px;
  }

  .vision-mission-statement {
    grid-template-columns: 210px minmax(0, 1fr);
  }
}


@media (max-width: 991px) {
  .vision-mission {
    padding: 85px 0;
  }

  .vision-mission-header {
    margin-bottom: 70px;
  }

  .vision-mission-item {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .vision-mission-item-side {
    min-height: 430px;
    padding-right: 25px;
  }

  .vision-mission-item-main {
    padding-left: 38px;
  }

  .vision-mission-item-main h2 {
    margin-bottom: 55px;
  }

  .vision-mission-item-text {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vision-mission-principles {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 90px;
    padding-top: 70px;
  }

  .vision-mission-principles-heading h2 {
    max-width: 680px;
  }

  .vision-mission-statement {
    grid-template-columns: 160px minmax(0, 1fr);
    margin-top: 90px;
  }
}


@media (max-width: 767px) {
  .vision-mission {
    padding: 70px 0;
  }

  .vision-mission-header {
    margin-bottom: 55px;
  }

  .vision-mission-header-top {
    margin-bottom: 26px;
  }

  .vision-mission-header h1 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -1.8px;
  }

  .vision-mission-header > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .vision-mission-item {
    display: block;
  }

  .vision-mission-item-side {
    flex-direction: row;
    align-items: center;
    min-height: auto;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid #d7d7d7;
  }

  .vision-mission-item-main {
    padding: 35px 0 42px;
  }

  .vision-mission-item-main h2 {
    margin-bottom: 40px;
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: -1px;
  }

  .vision-mission-principles {
    margin-top: 70px;
    padding-top: 55px;
  }

  .vision-mission-principles-heading h2 {
    font-size: 39px;
    letter-spacing: -1.5px;
  }

  .vision-mission-principle-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    padding: 28px 0;
  }

  .vision-mission-principle-content h3 {
    font-size: 21px;
  }

  .vision-mission-statement {
    display: block;
    margin-top: 70px;
    padding-top: 30px;
  }

  .vision-mission-statement-label {
    display: block;
    margin-bottom: 35px;
  }

  .vision-mission-statement p {
    font-size: 27px;
    line-height: 1.48;
    letter-spacing: -0.8px;
  }
}


@media (max-width: 479px) {
  .vision-mission {
    padding: 60px 0;
  }

  .vision-mission-header h1 {
    font-size: 35px;
  }

  .vision-mission-item-main h2 {
    font-size: 27px;
  }

  .vision-mission-principles-heading h2 {
    font-size: 34px;
  }

  .vision-mission-principle-item {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .vision-mission-statement p {
    font-size: 24px;
  }
}

/* Refined Vision Mission Design */
.vision-mission {
  background:
    linear-gradient(180deg, #f4f7fa 0%, #eef3f7 48%, #ffffff 100%);
}

.vision-mission::before {
  top: 96px;
  width: 260px;
  height: 260px;
  border-color: rgba(0, 105, 171, 0.12);
}

.vision-mission-header {
  margin-bottom: 72px;
}

.vision-mission-header-top {
  border-bottom-color: rgba(14, 35, 68, 0.14);
}

.vision-mission-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-blue);
}

.vision-mission-eyebrow::before {
  width: 8px;
  height: 8px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.vision-mission-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  border-top: 0;
}

.vision-mission-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
  border-radius: 14px;
  background: #f4f4f5;
  box-shadow: none;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.vision-mission-item:hover {
  transform: translateY(-5px);
}

.vision-mission-item-side {
  min-height: auto;
  padding: 28px 30px 0;
  border-right: 0;
}

.vision-mission-item-number {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: #536176;
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-radius: 999px;
}

.vision-mission-item-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  color: #111827;
}

.vision-mission-item-title i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--heading-color);
  font-size: 18px;
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-radius: 50%;
}

.vision-mission-item-main {
  padding: 30px;
}

.vision-mission-item-main h2 {
  margin-bottom: 36px;
  font-size: clamp(28px, 2.6vw, 42px);
  letter-spacing: -1.3px;
}

.vision-mission-item-text {
  grid-template-columns: 1fr;
  gap: 18px;
}

.vision-mission-principles {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
  margin-top: 90px;
  padding: 54px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: var(--button-radius);
  background: #f4f4f5;
}

.vision-mission-principles-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-top: 0;
}

.vision-mission-principle-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 14px;
  background: var(--background-color);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.vision-mission-principle-item::before {
  position: absolute;
  top: 0;
  left: 26px;
  width: 0;
  height: 2px;
  content: "";
  background-color: var(--accent-color);
  transition: width 0.4s ease;
}

.vision-mission-principle-item:hover {
  transform: translateY(-5px);
}

.vision-mission-principle-item:hover::before {
  width: calc(100% - 52px);
}

.vision-mission-principle-number {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 38px;
  padding: 0;
  color: #536176;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
}

.vision-mission-principle-number i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--heading-color);
  font-size: 17px;
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-radius: 50%;
}

.vision-mission-principle-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.vision-mission-cta {
  align-items: center;
  margin-top: 90px;
  padding: 44px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  color: var(--heading-color);
  background: #f4f4f5;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: var(--button-radius);
}

.vision-mission-cta-label,
.vision-mission-cta h2,
.vision-mission-cta p {
  color: var(--heading-color);
}

.vision-mission-cta-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: #5f6670;
  opacity: 1;
}

.vision-mission-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -1.4px;
}

.vision-mission-cta p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  opacity: 1;
}

.vision-mission-cta-button {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  background: #111827;
  border: 1px solid color-mix(in srgb, #111827, transparent 18%);
  border-radius: var(--button-radius);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.vision-mission-cta-button i {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.vision-mission-cta-button:hover {
  color: #ffffff;
  background: #111827;
  opacity: var(--button-hover-opacity);
}

.vision-mission-cta-button:hover i {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .vision-mission-content,
  .vision-mission-principles {
    grid-template-columns: 1fr;
  }

  .vision-mission-principles {
    padding: 42px;
  }

  .vision-mission-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 767px) {
  .vision-mission-content,
  .vision-mission-principles-list {
    grid-template-columns: 1fr;
  }

  .vision-mission-item-side {
    padding: 24px 24px 0;
    border-bottom: 0;
  }

  .vision-mission-item-title {
    margin-top: 34px;
  }

  .vision-mission-item-main {
    padding: 26px 24px 30px;
  }

  .vision-mission-principles {
    padding: 30px 22px;
  }

  .vision-mission-principle-item {
    min-height: 200px;
    padding: 26px;
  }

  .vision-mission-cta {
    padding: 34px 26px;
  }

  .vision-mission-cta-button {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Contact Linear Section
--------------------------------------------------------------*/
.contact-linear {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background-color: var(--background-color);
}

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

/*--------------------------------------------------------------
# Quick Contact Cards
--------------------------------------------------------------*/
.contact-linear .contact-linear-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 64px;
}

.contact-linear .contact-linear-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
  border-radius: 14px;
  background: #f4f4f5;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-linear .contact-linear-card::before {
  position: absolute;
  top: 0;
  left: 26px;
  width: 0;
  height: 2px;
  content: "";
  background-color: var(--accent-color);
  transition: width 0.4s ease;
}

.contact-linear .contact-linear-card:hover {
  transform: translateY(-5px);
}

.contact-linear .contact-linear-card:hover::before {
  width: calc(100% - 52px);
}

.contact-linear .contact-linear-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 86%
  );
  border-radius: 50%;
  background-color: var(--background-color);
  color: var(--heading-color);
}

.contact-linear .contact-linear-card-icon i {
  font-size: 17px;
  line-height: 1;
}

.contact-linear .contact-linear-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.contact-linear .contact-linear-card-content h3 {
  margin: 0 0 8px;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.35px;
}

.contact-linear .contact-linear-card-content p {
  margin: 0 0 22px;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 35%
  );
  font-size: 13px;
  line-height: 1.65;
}

.contact-linear .contact-linear-card-content a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding: 9px 12px;
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 82%
  );
  border-radius: 7px;
  background-color: var(--background-color);
  color: var(--heading-color);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.contact-linear .contact-linear-card-content a i {
  font-size: 11px;
}

.contact-linear .contact-linear-card-content a:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Main Area
--------------------------------------------------------------*/
.contact-linear .contact-linear-main {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 91%
  );
  border-radius: 16px;
  background-color: var(--surface-color);
}

/*--------------------------------------------------------------
# Office Information
--------------------------------------------------------------*/
.contact-linear .contact-linear-office {
  position: relative;
  padding: 48px;
  border-right: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 91%
  );
}

.contact-linear .contact-linear-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 43%
  );
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.contact-linear .contact-linear-label::before {
  width: 22px;
  height: 1px;
  content: "";
  background-color: var(--accent-color);
}

.contact-linear .contact-linear-office h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.7px;
}

.contact-linear .contact-linear-office-text {
  max-width: 470px;
  margin: 0 0 40px;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 28%
  );
  font-size: 14px;
  line-height: 1.75;
}

.contact-linear .contact-linear-office-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-linear .contact-linear-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-linear .contact-linear-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
  border-radius: 50%;
  color: var(--accent-color);
}

.contact-linear .contact-linear-detail-icon i {
  font-size: 13px;
}

.contact-linear .contact-linear-detail div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-linear .contact-linear-detail small {
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 48%
  );
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.contact-linear .contact-linear-detail strong {
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-linear .contact-linear-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 91%
  );
}

.contact-linear .contact-linear-social > span {
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 43%
  );
  font-size: 11px;
  font-weight: 500;
}

.contact-linear .contact-linear-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-linear .contact-linear-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
  border-radius: 50%;
  color: var(--heading-color);
  text-decoration: none;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.contact-linear .contact-linear-social-links a i {
  font-size: 13px;
}

.contact-linear .contact-linear-social-links a:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact-linear .contact-linear-form-wrapper {
  padding: 48px;
}

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

.contact-linear .contact-linear-form-header > span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.contact-linear .contact-linear-form-header h3 {
  margin: 0 0 10px;
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.8px;
}

.contact-linear .contact-linear-form-header p {
  margin: 0;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 40%
  );
  font-size: 13px;
  line-height: 1.65;
}

.contact-linear .contact-linear-form-group {
  margin-bottom: 4px;
}

.contact-linear .contact-linear-form-group label {
  display: block;
  margin-bottom: 9px;
  color: var(--heading-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.contact-linear .contact-linear-form-group input,
.contact-linear .contact-linear-form-group select,
.contact-linear .contact-linear-form-group textarea {
  width: 100%;
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 87%
  );
  border-radius: 9px;
  outline: none;
  background-color: var(--background-color);
  color: var(--default-color);
  font-family: inherit;
  font-size: 13px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.contact-linear .contact-linear-form-group input,
.contact-linear .contact-linear-form-group select {
  height: 50px;
  padding: 0 15px;
}

.contact-linear .contact-linear-form-group textarea {
  min-height: 118px;
  padding: 15px;
  line-height: 1.65;
  resize: vertical;
}

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

.contact-linear .contact-linear-form-group input:focus,
.contact-linear .contact-linear-form-group select:focus,
.contact-linear .contact-linear-form-group textarea:focus {
  border-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 25%
  );
  background-color: var(--surface-color);
  box-shadow: 0 0 0 3px color-mix(
    in srgb,
    var(--accent-color),
    transparent 91%
  );
}

/* Select */
.contact-linear .contact-linear-select {
  position: relative;
}

.contact-linear .contact-linear-select select {
  padding-right: 44px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.contact-linear .contact-linear-select > i {
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 2;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 45%
  );
  font-size: 11px;
  pointer-events: none;
  transform: translateY(-50%);
}

/* Form Footer */
.contact-linear .contact-linear-form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 91%
  );
}

.contact-linear .contact-linear-form-bottom p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 330px;
  margin: 0;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 50%
  );
  font-size: 10px;
  line-height: 1.55;
}

.contact-linear .contact-linear-form-bottom p i {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent-color);
  font-size: 12px;
}

.contact-linear .contact-linear-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 155px;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.contact-linear .contact-linear-submit i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.contact-linear .contact-linear-submit:hover {
  transform: translateY(-2px);
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    black 7%
  );
  box-shadow: 0 12px 28px color-mix(
    in srgb,
    var(--accent-color),
    transparent 72%
  );
}

.contact-linear .contact-linear-submit:hover i {
  transform: translate(3px, -3px);
}

/*--------------------------------------------------------------
# Contact Map
--------------------------------------------------------------*/
.contact-linear .contact-linear-map {
  position: relative;
  height: 390px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
  border-radius: 16px;
  background-color: var(--surface-color);
}

.contact-linear .contact-linear-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.88) brightness(1.05);
  transition: filter 0.5s ease;
}

.contact-linear .contact-linear-map:hover iframe {
  filter: grayscale(0.15) contrast(0.95) brightness(1);
}

.contact-linear .contact-linear-map-header {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 36px);
  max-width: 500px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 32px rgba(18, 24, 38, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-linear .contact-linear-map-header > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-linear .contact-linear-map-header > div span {
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 50%
  );
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.contact-linear .contact-linear-map-header > div strong {
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 600;
}

.contact-linear .contact-linear-map-header > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 7px;
  background-color: var(--heading-color);
  color: var(--contrast-color);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
}

.contact-linear .contact-linear-map-header > a i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.contact-linear .contact-linear-map-header > a:hover i {
  transform: translate(2px, -2px);
}

/* Minimal contact page refresh */
.contact-linear {
  padding: 82px 0 96px;
}

.contact-linear .contact-linear-layout {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  align-items: start;
  gap: 72px;
  max-width: 1120px;
  margin: 0 auto;
}

.contact-linear .contact-linear-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: none;
  margin: 0;
  border: 0;
}

.contact-linear .contact-linear-card {
  min-height: 184px;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: var(--button-radius);
  background: #f4f4f5;
  box-shadow: none;
}

.contact-linear .contact-linear-card::before {
  display: none;
}

.contact-linear .contact-linear-card:hover {
  transform: none;
  background: #efeff1;
  box-shadow: none;
}

.contact-linear .contact-linear-card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 0;
  background: transparent;
  color: #050505;
}

.contact-linear .contact-linear-card-icon i {
  font-size: 27px;
}

.contact-linear .contact-linear-card-content h3 {
  margin-bottom: 7px;
  color: #050505;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-linear .contact-linear-card-content p {
  max-width: 260px;
  margin-bottom: 18px;
  color: #666b73;
  font-size: 12px;
  line-height: 1.55;
}

.contact-linear .contact-linear-card-content a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--button-icon-gap);
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: var(--button-radius);
  background: #ffffff;
  color: #111827;
  font-family: var(--nav-font, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.contact-linear .contact-linear-card-content a:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #111827;
  opacity: var(--button-hover-opacity);
}

.contact-linear .contact-linear-main {
  display: block;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.contact-linear .contact-linear-form-wrapper {
  width: 100%;
  padding: 0;
}

.contact-linear .contact-linear-form .row {
  --bs-gutter-y: 0;
}

.contact-linear .contact-linear-form-group {
  position: relative;
  margin: 0;
}

.contact-linear .contact-linear-form-group label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-linear .contact-linear-form-group input,
.contact-linear .contact-linear-form-group select,
.contact-linear .contact-linear-form-group textarea {
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
  border-radius: 0;
  background: transparent;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
}

.contact-linear .contact-linear-form-group input,
.contact-linear .contact-linear-form-group select {
  height: 96px;
  padding: 0 0;
}

.contact-linear .contact-linear-form-group textarea {
  min-height: 160px;
  padding: 38px 0 14px;
  resize: vertical;
}

.contact-linear .contact-linear-form-group input::placeholder,
.contact-linear .contact-linear-form-group textarea::placeholder {
  color: #718299;
}

.contact-linear .contact-linear-form-group select:invalid {
  color: #718299;
}

.contact-linear .contact-linear-form-group input:focus,
.contact-linear .contact-linear-form-group select:focus,
.contact-linear .contact-linear-form-group textarea:focus {
  border-color: color-mix(in srgb, var(--heading-color), transparent 35%);
  background: transparent;
  box-shadow: none;
}

.contact-linear .contact-linear-select > i {
  right: 2px;
  color: var(--heading-color);
  font-size: 15px;
  transition: transform 0.25s ease;
}

.contact-linear .contact-linear-select.is-open > i {
  transform: translateY(-50%) rotate(180deg);
}

.contact-linear .contact-linear-select select {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.contact-linear .contact-custom-select-toggle {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 34px 0 0;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
  border-radius: 0;
  background: transparent;
  color: #718299;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.contact-linear .contact-linear-select.has-value .contact-custom-select-toggle,
.contact-linear .contact-custom-select-toggle:focus {
  color: var(--heading-color);
}

.contact-linear .contact-custom-select-toggle:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--heading-color), transparent 35%);
}

.contact-linear .contact-custom-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 10;
  width: 100%;
  max-height: 312px;
  padding: 8px;
  margin: 0;
  overflow-y: auto;
  list-style: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  border-radius: var(--button-radius);
  background-color: var(--surface-color);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.contact-linear .contact-linear-select.is-open .contact-custom-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-linear .contact-custom-select-menu button {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 0;
  border-radius: calc(var(--button-radius) - 2px);
  background: transparent;
  color: var(--heading-color);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.contact-linear .contact-custom-select-menu button:hover,
.contact-linear .contact-custom-select-menu button.is-selected {
  background-color: rgba(17, 24, 39, 0.07);
  color: #111827;
}

.contact-linear .contact-linear-form-bottom {
  display: block;
  margin-top: 28px;
  padding-top: 0;
  border-top: 0;
}

.contact-linear .contact-linear-submit {
  width: 100%;
  min-height: 70px;
  gap: var(--button-icon-gap);
  border: 1px solid #111827;
  border-radius: var(--button-radius);
  background-color: #111827;
  color: #ffffff;
  font-family: var(--nav-font, "Inter", sans-serif);
  font-size: 18px;
  font-weight: 700;
}

.contact-linear .contact-linear-submit:hover {
  transform: none;
  opacity: var(--button-hover-opacity);
  background-color: #111827;
  box-shadow: none;
}

.contact-linear .contact-linear-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 54px;
  max-width: 1120px;
  margin: 64px auto 0;
  padding: 44px 42px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: var(--button-radius);
  background: #f4f4f5;
}

.contact-linear .contact-linear-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-linear .contact-linear-cta-content > span {
  margin-bottom: 12px;
  color: #5f6670;
  font-size: 12px;
  font-weight: 600;
}

.contact-linear .contact-linear-cta h2 {
  max-width: 440px;
  margin: 0 0 26px;
  color: #050505;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-linear .contact-linear-cta-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--button-icon-gap);
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, #111827, transparent 18%);
  border-radius: var(--button-radius);
  background: #111827;
  color: #ffffff;
  font-family: var(--nav-font, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.contact-linear .contact-linear-cta-button:hover {
  color: #ffffff;
  opacity: var(--button-hover-opacity);
}

.contact-linear .contact-linear-cta-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-linear .contact-linear-cta-details p {
  max-width: 430px;
  margin: 0 0 25px;
  color: #606873;
  font-size: 13px;
  line-height: 1.7;
}

.contact-linear .contact-linear-cta-details ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-linear .contact-linear-cta-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #050505;
}

.contact-linear .contact-linear-cta-details li span {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  border-radius: 50%;
  background: #dadcdf;
  color: #050505;
}

.contact-linear .contact-linear-cta-details li i {
  font-size: 10px;
  line-height: 1;
}

.contact-linear .contact-linear-cta-details li strong {
  color: #050505;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-linear .contact-linear-map {
  margin-top: 28px;
}

/*--------------------------------------------------------------
# Contact Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .contact-linear .contact-linear-layout {
    gap: 46px;
  }

  .contact-linear .contact-linear-form-wrapper {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .contact-linear {
    padding: 90px 0;
  }

  .contact-linear .contact-linear-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-linear .contact-linear-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 0;
  }

  .contact-linear .contact-linear-card:nth-child(2) {
    border-right: 0;
  }

  .contact-linear .contact-linear-card:last-child {
    grid-column: auto;
    border-top: 0;
  }

  .contact-linear .contact-linear-main {
    display: block;
  }

  .contact-linear .contact-linear-office {
    border-right: 0;
    border-bottom: 1px solid color-mix(
      in srgb,
      var(--default-color),
      transparent 91%
    );
  }

  .contact-linear .contact-linear-map {
    height: 350px;
  }

  .contact-linear .contact-linear-cta {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 32px;
  }
}

@media (max-width: 767px) {
  .contact-linear {
    padding: 72px 0;
  }

  .contact-linear .contact-linear-cards {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    margin-bottom: 32px;
    border: 0;
  }

  .contact-linear .contact-linear-card,
  .contact-linear .contact-linear-card:nth-child(2) {
    border-right: 0;
    border-bottom: 0;
  }

  .contact-linear .contact-linear-card:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .contact-linear .contact-linear-card {
    min-height: auto;
    padding: 22px;
  }

  .contact-linear .contact-linear-card-icon {
    margin-bottom: 18px;
  }

  .contact-linear .contact-linear-form-wrapper {
    padding: 0;
  }

  .contact-linear .contact-linear-office h2 {
    font-size: 34px;
    letter-spacing: -1.15px;
  }

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

  .contact-linear .contact-linear-form-bottom {
    display: block;
  }

  .contact-linear .contact-linear-form-bottom p {
    max-width: none;
  }

  .contact-linear .contact-linear-submit {
    width: 100%;
  }

  .contact-linear .contact-linear-map {
    height: 330px;
  }

  .contact-linear .contact-linear-cta {
    margin-top: 42px;
    padding: 30px 24px;
  }

  .contact-linear .contact-linear-cta h2 {
    font-size: 30px;
  }

  .contact-linear .contact-linear-map-header {
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
  }
}

@media (max-width: 480px) {
  .contact-linear .contact-linear-social {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-linear .contact-linear-map-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .contact-linear .contact-linear-map-header > a {
    width: 100%;
    justify-content: space-between;
  }
}

/*--------------------------------------------------------------
# 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;
  }
}
