@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Google Sans", sans-serif;
}

:root { 
  --background-color: #ffffff;
  --default-color: #666666;
  --heading-color: #000000;
  --accent-color: #313131;
  --brand-primary: #143554;
  --brand-primary-dark: #0b2238;
  --brand-primary-light: #5c84a3;
  --brand-primary-soft: #eef4f8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

: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;
}

/* Native scroll */
:root {
  scroll-behavior: auto;
}

/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar {
  --topbar-height: 34px;

  position: fixed;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  isolation: isolate;
  z-index: 998;
  transition:
    transform 0.45s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.topbar::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.14) 52%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

.topbar .container-fluid {
  height: 100%;
}

.topbar-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-left a,
.topbar-right {
  color: inherit;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35px;
}

.topbar-left a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.3s ease;
}

.topbar-left a:hover {
  color: #ffffff;
}

.topbar-left i {
  font-size: 11px;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-social a,
.topbar-social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s ease;
}

.topbar-social a:hover {
  color: #ffffff;
}

.topbar-social i {
  font-size: 12px;
}

/* Sayfa kaydırıldığında topbar gizlenir */
body.header-scrolled .topbar {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --header-height: 96px;

  top: 34px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  color: #ffffff;
  background: transparent;
  z-index: 997;

  transition:
    top 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out,
    backdrop-filter 0.2s ease-in-out;
}

.header .container-fluid {
  height: 100%;
}

.header-wrapper {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 35px;
}


/*--------------------------------------------------------------
# Header Scrolled
--------------------------------------------------------------*/
body.header-scrolled .header {
  top: 0;
  color: #17191c;
  background: rgba(255, 255, 255, 0.7);
  border-bottom-color: transparent;
  box-shadow: 0 8px 30px rgba(0, 28, 30, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Aşağı doğru kaydırırken gizle */
body.header-hidden .header {
  transform: translateY(-110%);
}

/* Mobil menü açıkken header gizlenmesin */
body.mobile-nav-active .header {
  transform: none;
}


/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
.header .logo {
  position: relative;
  z-index: 10002;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.header .logo img {
  display: block;
  width: 200px;
  max-width: none;
  height: auto;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.header .logo .logo-dark {
  position: absolute;
  top: 50%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
}

body.header-scrolled .header .logo-light,
body.mobile-nav-active .header .logo-light {
  opacity: 0;
  visibility: hidden;
}

body.header-scrolled .header .logo-dark,
body.mobile-nav-active .header .logo-dark {
  opacity: 1;
  visibility: visible;
}


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

.header-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.header-contact-link i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.header-contact-link:hover {
  color: #ffffff;
}

.header-contact-link:hover i {
  transform: translate(2px, -2px);
}

.header-cta {
  min-height: 42px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #152028;
  background: #ffffff;
  border: 1px solid #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15px;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.header-cta:hover {
  color: #ffffff;
  background: transparent;
}

body.header-scrolled .header-contact-link {
  color: #31383d;
}

body.header-scrolled .header-contact-link:hover {
  color: #000000;
}

body.header-scrolled .header-cta {
  color: #ffffff;
  background: #17242c;
  border-color: #17242c;
}

body.header-scrolled .header-cta:hover {
  color: #17242c;
  background: transparent;
}

/*--------------------------------------------------------------
# Language Switcher
--------------------------------------------------------------*/
.language-switcher {
  position: relative;
  z-index: 10002;
}

.language-switcher-toggle {
  min-height: 42px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 0;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}

.language-switcher-toggle > .bi-translate {
  font-size: 17px;
}

.language-switcher-chevron {
  margin-left: 2px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.language-switcher.is-open .language-switcher-chevron {
  transform: rotate(180deg);
}

body.header-scrolled .language-switcher-toggle,
body.mobile-nav-active .language-switcher-toggle {
  color: #17242c;
}

.language-switcher-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 145px;
  padding: 7px;
  visibility: hidden;
  opacity: 0;
  background: #ffffff;
  border: 1px solid rgba(17, 25, 31, 0.1);
  box-shadow: 0 16px 38px rgba(16, 28, 36, 0.14);
  transform: translateY(-6px);
  transition:
    visibility 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.language-switcher.is-open .language-switcher-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.language-switcher-menu button {
  width: 100%;
  padding: 10px 11px;
  color: #4b5358;
  background: transparent;
  border: 0;
  font-family: var(--nav-font);
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.language-switcher-menu button:hover,
.language-switcher-menu button.active {
  color: #11181d;
  background: #f2f4f5;
}


/*--------------------------------------------------------------
# Navigation Menu - Desktop
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
  }

  .navmenu > ul {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .navmenu a,
  .navmenu a:focus {
    position: relative;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--nav-font);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    margin-left: 6px;
    font-size: 9px;
    line-height: 0;
    transition: transform 0.3s ease;
  }

  .navmenu > ul > li > a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 3px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.35s ease;
  }

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

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
  }

  body.header-scrolled .navmenu a,
  body.header-scrolled .navmenu a:focus {
    color: #4b5155;
  }

  body.header-scrolled .navmenu li:hover > a,
  body.header-scrolled .navmenu .active,
  body.header-scrolled .navmenu .active:focus {
    color: #11181d;
  }

  /* Dropdown */
  .navmenu .dropdown ul {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    min-width: 225px;
    margin: 0;
    padding: 12px;
    display: block;
    visibility: hidden;
    opacity: 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid rgba(16, 28, 36, 0.08);
    box-shadow: 0 18px 50px rgba(14, 24, 31, 0.12);
    transform: translate(-50%, 8px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
    z-index: 99;
  }

  .navmenu .dropdown ul::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
  }

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

  .navmenu .dropdown ul a,
  body.header-scrolled .navmenu .dropdown ul a {
    padding: 12px 13px;
    color: #4c5358;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }

  .navmenu .dropdown ul a::after {
    display: none;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: #11181d;
    background: #f3f5f5;
  }

  .navmenu .dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .navmenu .dropdown:hover > a i {
    transform: rotate(180deg);
  }

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


/*--------------------------------------------------------------
# Navigation Menu - Mobile
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .topbar {
    display: none;
  }

  .header,
  body.header-scrolled .header {
    top: 0;
  }

  .header {
    --header-height: 84px;
    height: var(--header-height);
  }

  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .header .logo {
    flex-shrink: 0;
  }

  .header .logo img {
    width: 175px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-contact-link {
    display: none;
  }

  .header-cta {
    min-height: 39px;
    padding: 0 17px;
    font-size: 11px;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 10002;
    width: 42px;
    height: 42px;
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ffffff;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    line-height: 1;
    cursor: pointer;
    transition:
      color 0.3s ease,
      transform 0.35s ease;
  }

  .mobile-nav-line {
    display: block;
    height: 1.5px;
    background: currentColor;
    transform-origin: center;
    transition:
      width 0.28s ease,
      transform 0.32s ease;
  }

  .mobile-nav-line-long {
    width: 25px;
  }

  .mobile-nav-line-short {
    width: 16px;
    margin-left: 9px;
  }

  body.header-scrolled .mobile-nav-toggle,
  body.mobile-nav-active .mobile-nav-toggle {
    color: #17242c;
  }

  .navmenu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    background: #ffffff;
    z-index: 10000;
    transform: translateY(-100%);
    transition:
      visibility 0.45s ease,
      opacity 0.3s ease,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .navmenu > ul {
    position: absolute;
    inset: 0 25px 30px;
    margin: 0;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    list-style: none;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-14px);
    transition:
      opacity 0.24s ease,
      transform 0.32s ease;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #202a30;
    border-bottom: 1px solid rgba(17, 25, 31, 0.1);
    font-family: var(--nav-font);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.4px;
    white-space: nowrap;
    transition: color 0.3s ease;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #7c8a91;
  }

  .navmenu a i,
  .navmenu a:focus i {
    width: 36px;
    height: 36px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #17242c;
    font-size: 13px;
    transition:
      transform 0.3s ease,
      background-color 0.3s ease;
  }

  .navmenu a.active i,
  .navmenu a:focus i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    margin: 0;
    padding: 8px 0 15px 18px;
    list-style: none;
    background: transparent;
  }

  .navmenu .dropdown ul a {
    padding: 11px 0;
    color: #626a6e;
    border-bottom: 0;
    font-size: 15px;
    font-weight: 400;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
  }

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

  .mobile-nav-active .navmenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-active .navmenu > ul {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.38s;
  }

  body.mobile-nav-active .header {
    color: #17242c;
    background: #ffffff;
    border-bottom-color: rgba(17, 25, 31, 0.1);
    box-shadow: 0 8px 25px rgba(16, 28, 36, 0.06);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-nav-active .mobile-nav-toggle {
    gap: 0;
  }

  .mobile-nav-active .mobile-nav-line {
    position: absolute;
    width: 24px;
    margin-left: 0;
  }

  .mobile-nav-active .mobile-nav-line-long {
    transform: rotate(45deg);
  }

  .mobile-nav-active .mobile-nav-line-short {
    transform: rotate(-45deg);
  }

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


/*--------------------------------------------------------------
# Responsive Topbar
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .header {
    --header-height: 76px;
    height: var(--header-height);
  }

  .header .logo img {
    width: 155px;
  }

  .header-cta {
    display: none;
  }

  .navmenu > ul {
    inset: 0 20px 25px;
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100lvh;
  color: #171719;
  background-color: #fcfcfc;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 1.08s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 1.08s ease;
}

#preloader.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-container {
  position: relative;
  width: 100%;
  height: 100svh;
}

.preloader-progress {
  position: absolute;
  right: min(100px, 6.25vw);
  bottom: min(100px, 6.25vw);
  font-family: var(--heading-font);
  font-size: min(100px, 6.25vw);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
}

.preloader-progress strong {
  color: #171719;
  font: inherit;
}

.preloader-progress span {
  color: #9d9daa;
}

body.preloading {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  #preloader {
    transition: none;
  }
}

@media screen and (max-width: 1024px) {
  .preloader-progress {
    font-size: 9.765625vw;
    letter-spacing: -0.11328125vw;
  }
}

@media screen and (max-width: 565px) {
  .preloader-progress {
    right: 11.6279069767vw;
    bottom: 11.6279069767vw;
    font-size: 16.2790697674vw;
    letter-spacing: -0.2697674419vw;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.scroll-top {
  display: none !important;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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

.call-button {
  display: flex !important;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #ffffff;
  background-color: #15273a;
  box-shadow: 0 10px 28px rgba(8, 22, 34, 0.24);
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.call-button i {
  color: inherit;
  font-size: 1.15rem;
  line-height: 1;
}

.call-button:hover {
  color: #ffffff;
  background-color: #253d53;
  box-shadow: 0 14px 34px rgba(8, 22, 34, 0.3);
  transform: scale(1.08);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  position: relative;
  padding-top: 24px;
  padding-bottom: 58px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
}

.section-title .subtitle {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 30px;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
}

.section-title .subtitle::before {
  content: "";
  width: 28px;
  height: 1px;
  flex: 0 0 28px;
  background-color: var(--accent-color);
}

.section-title-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(44px, 6vw, 78px);
}

.section-title h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 3.35vw, 3.45rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--heading-color);
  text-wrap: balance;
}

.section-title h2 .title-line {
  display: block;
  margin-top: 4px;
}

.section-title h2 .title-strong,
.section-title h2 .title-accent {
  font-weight: 500;
  color: color-mix(in srgb, var(--heading-color), transparent 14%);
}

.section-title h2 > span:not(.title-line) {
  display: block;
  margin-top: 3px;
  font-weight: 500;
  color: color-mix(in srgb, var(--heading-color), transparent 14%);
}

.section-title > h2 {
  margin-bottom: 16px;
}

.section-title > p {
  max-width: 680px;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
}

.section-title-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-left: 28px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
}

.section-title-description p {
  max-width: 430px;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
}

.section-title-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 56%);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.025em;
  color: var(--heading-color);
  background-color: transparent;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.section-title-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.section-title-link:hover {
  color: var(--accent-color);
  background-color: transparent;
  border-color: var(--accent-color);
  transform: none;
}

.section-title-link:hover i {
  transform: translate(3px, -3px);
}

@media (max-width: 991px) {
  .section-title {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .section-title .subtitle {
    margin-bottom: 25px;
  }

  .section-title-content {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 35px;
  }

  .section-title h2 {
    max-width: 720px;
  }

  .section-title-description {
    max-width: 620px;
    padding-left: 22px;
  }

  .section-title-description p {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .section-title {
    padding-top: 17px;
    padding-bottom: 40px;
  }

  .section-title .subtitle {
    margin-bottom: 21px;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  .section-title-content {
    gap: 27px;
  }

  .section-title h2 {
    max-width: 100%;
    font-size: 2.15rem;
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .section-title h2 .title-line {
    margin-top: 2px;
  }

  .section-title-description {
    gap: 20px;
    padding-left: 0;
    border-left: 0;
  }

  .section-title-description p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .section-title-link {
    width: auto;
    min-width: 0;
    padding: 0 0 7px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  padding: 0;
  overflow: hidden;
  background-color: #091015;
}

/*--------------------------------------------------------------
# Hero Background Slider
--------------------------------------------------------------*/
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slider .swiper-slide img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.055);
  transition: transform 10.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

/*--------------------------------------------------------------
# Hero Overlay
--------------------------------------------------------------*/
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(4, 11, 15, 0.58) 0%,
      rgba(4, 11, 15, 0.38) 35%,
      rgba(4, 11, 15, 0.14) 68%,
      rgba(4, 11, 15, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 9, 13, 0.24) 0%,
      rgba(3, 9, 13, 0.03) 38%,
      rgba(3, 9, 13, 0.58) 100%
    );
}

/*--------------------------------------------------------------
# Hero Container
--------------------------------------------------------------*/
.hero-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 3;
}

/*--------------------------------------------------------------
# Hero Slider Counter
--------------------------------------------------------------*/
.hero-slider-counter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  width: auto;
  height: 52px;
  padding: 0;
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.48));
}

.hero-counter-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.hero-counter-item i {
  display: block;
  width: 38px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.58);
  transition:
    width 0.35s ease,
    height 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-counter-item:hover i,
.hero-counter-item:focus-visible i {
  background-color: rgba(255, 255, 255, 0.68);
}

.hero-counter-item.is-active i {
  width: 44px;
  height: 1px;
  background-color: #ffffff;
  box-shadow:
    0 0 5px rgba(255, 255, 255, 0.28),
    0 1px 6px rgba(0, 0, 0, 0.68);
}

.hero-counter-item:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 5px;
}

/*--------------------------------------------------------------
# Hero Slider Arrow Controls
--------------------------------------------------------------*/
.hero-slider-arrow-zone {
  position: absolute;
  top: 30%;
  bottom: 30%;
  z-index: 4;
  width: 86px;
}

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

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

.hero-slider-arrow,
.hero-slider-next {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 64px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  opacity: 0;
  transform: translate(12px, -50%);
  cursor: pointer;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.hero-slider-prev {
  left: 8px;
  transform: translate(-12px, -50%);
}

.hero-slider-next {
  right: 8px;
  transform: translate(12px, -50%);
}

.hero-slider-arrow i,
.hero-slider-next i {
  font-size: 32px;
  line-height: 1;
}

.hero-slider-prev-zone:hover .hero-slider-prev,
.hero-slider-next-zone:hover .hero-slider-next,
.hero-slider-arrow:focus-visible,
.hero-slider-next:focus-visible {
  opacity: 1;
  transform: translate(0, -50%);
}

.hero-slider-arrow:focus-visible,
.hero-slider-next:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

/*--------------------------------------------------------------
# Hero Content
--------------------------------------------------------------*/
.hero-content {
  width: min(760px, 68vw);
  margin-bottom: 105px;
  color: #ffffff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(38px, 3.65vw, 60px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -2.3px;
}

.hero-content h1 strong {
  display: block;
  color: #ffffff;
  font-weight: 450;
}

.hero-title-emphasis {
  font-weight: 650;
}

.hero-title-highlight {
  display: inline;
  font-weight: 650;
}

.hero-title-line,
.hero-content h1 strong {
  display: block;
  white-space: nowrap;
}

.hero-content p {
  max-width: 540px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

/*--------------------------------------------------------------
# Hero Buttons
--------------------------------------------------------------*/
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 45px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

.hero-btn-primary {
  padding: 0 23px;
  color: #152028;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.2),
    inset 0 -2px 0 rgba(21, 32, 40, 0.12);
}

.hero-btn-primary:hover {
  color: #ffffff;
  background-color: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}

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

.hero-btn-link {
  min-height: auto;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-btn-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.hero-btn-link:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Hero Bottom
--------------------------------------------------------------*/
.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-bottom-wrapper {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-bottom-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Intro Animation
--------------------------------------------------------------*/
.hero-eyebrow,
.hero-content h1,
.hero-content p,
.hero-actions {
  opacity: 0;
  transform: translateY(24px);
  animation: heroContentReveal 0.8s ease forwards;
}

.hero-eyebrow {
  animation-delay: 0.2s;
}

.hero-content h1 {
  animation-delay: 0.32s;
}

.hero-content p {
  animation-delay: 0.44s;
}

.hero-actions {
  animation-delay: 0.56s;
}

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

/*--------------------------------------------------------------
# Hero Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: min(650px, 75vw);
    margin-bottom: 100px;
  }

  .hero-content h1 {
    font-size: clamp(37px, 5vw, 54px);
  }
}

@media (max-width: 991px) {
  .hero {
    height: 100svh;
    min-height: 650px;
  }

  .hero-content {
    width: calc(100% - 60px);
    margin-bottom: 95px;
  }

  .hero-content h1 {
    max-width: 600px;
    font-size: clamp(35px, 6.4vw, 48px);
    letter-spacing: -1.8px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 11, 15, 0.52) 0%,
        rgba(4, 11, 15, 0.22) 45%,
        rgba(4, 11, 15, 0.1) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 9, 13, 0.2) 0%,
        rgba(3, 9, 13, 0.04) 30%,
        rgba(3, 9, 13, 0.64) 100%
      );
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 640px;
  }

  .hero-slider .swiper-slide img {
    object-position: 60% center;
  }

  .hero-slider-counter {
    display: none;
  }

  .hero-slider-arrow-zone {
    width: 60px;
  }

  .hero-slider-arrow,
  .hero-slider-next {
    width: 42px;
    height: 56px;
  }

  .hero-slider-prev {
    left: 2px;
  }

  .hero-slider-next {
    right: 2px;
  }

  .hero-slider-arrow i,
  .hero-slider-next i {
    font-size: 26px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 11, 15, 0.42) 0%,
        rgba(4, 11, 15, 0.12) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 9, 13, 0.22) 0%,
        rgba(3, 9, 13, 0.05) 28%,
        rgba(3, 9, 13, 0.7) 100%
      );
  }

  .hero-content {
    width: 100%;
    margin-bottom: 84px;
    padding-right: 0;
  }

  .hero-eyebrow {
    margin-bottom: 15px;
    font-size: 8px;
    letter-spacing: 1.4px;
  }

  .hero-content h1 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(20px, 6.4vw, 28px);
    line-height: 1.07;
    letter-spacing: -1.25px;
  }

  .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  .hero-content h1 strong {
    display: block;
    max-width: 100%;
    white-space: normal;
  }

  .hero-content h1 strong > span {
    display: inline;
  }

  .hero-content p {
    display: none;
  }

  .hero-actions {
    gap: 0;
  }

  .hero-btn-link {
    display: none;
  }

  .hero-btn {
    min-height: 42px;
    font-size: 10px;
  }

  .hero-btn-primary {
    padding: 0 17px;
  }

  .hero-bottom-wrapper {
    height: 43px;
  }

  .hero-bottom-label {
    font-size: 7px;
  }

}

@media (max-width: 575px) {
  .hero-content {
    padding-right: 0;
  }

  .hero-content h1 {
    max-width: none;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

}

@media (max-height: 700px) and (min-width: 768px) {
  .hero {
    min-height: 620px;
  }

  .hero-content {
    margin-bottom: 82px;
  }

  .hero-content h1 {
    font-size: clamp(35px, 3.7vw, 50px);
  }

  .hero-eyebrow {
    margin-bottom: 14px;
  }

  .hero-content p {
    margin-bottom: 22px;
  }
}

/* Hareket azaltma ayarı açık olan kullanıcılar */
@media (prefers-reduced-motion: reduce) {
  .hero-slider .swiper-slide img {
    transition: none;
    transform: none;
  }

  .hero-eyebrow,
  .hero-content h1,
  .hero-content p,
  .hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (hover: none) {
  .hero-slider-arrow,
  .hero-slider-next {
    opacity: 0.78;
    transform: translate(0, -50%);
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.page-title {
  position: relative;
  display: flex;
  align-items: flex-end;
  text-align: left;
  min-height: 400px;
  padding: 150px 0 48px;
  overflow: hidden;
  background-color: #11191d;
  isolation: isolate;
}

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

.page-title-background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  filter: brightness(0.92) contrast(1.02) saturate(0.92);
}

.page-title-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(5, 18, 25, 0.86) 0%,
      rgba(5, 18, 25, 0.58) 28%,
      rgba(5, 18, 25, 0.28) 58%,
      rgba(5, 18, 25, 0.62) 100%
    ),
    linear-gradient(
      90deg,
      rgba(4, 20, 29, 0.74) 0%,
      rgba(4, 20, 29, 0.38) 52%,
      rgba(4, 20, 29, 0.28) 100%
    );
}

.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.055;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    );
  background-size: 96px 96px;
}

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

.page-title-content {
  position: relative;
  max-width: 740px;
  padding-left: 18px;
  color: #ffffff;
}

.page-title-content::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 5px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.82);
}

.page-title-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
}

.page-title-breadcrumb a,
.page-title-breadcrumb span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.page-title-breadcrumb a {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.page-title-breadcrumb a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.38);
}

.page-title-breadcrumb i,
.page-title-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.55rem;
}

.page-title h1 {
  max-width: 700px;
  margin: 0 0 13px;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(2.1rem, 3.6vw, 3.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -2.4px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.page-title h1 strong {
  display: block;
  color: var(--accent-color);
  font-weight: 600;
}

.page-title p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.62;
}

.page-title-line {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

/*--------------------------------------------------------------
# Page Title Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .page-title {
    min-height: 350px;
    padding: 135px 0 42px;
  }

  .page-title-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 18, 25, 0.86) 0%,
        rgba(5, 18, 25, 0.36) 55%,
        rgba(5, 18, 25, 0.66) 100%
      ),
      linear-gradient(
        90deg,
        rgba(4, 20, 29, 0.76) 0%,
        rgba(4, 20, 29, 0.38) 100%
      );
  }

  .page-title-content {
    max-width: 680px;
    padding-left: 16px;
  }

  .page-title h1 {
    font-size: clamp(2.15rem, 6vw, 3.15rem);
  }
}

@media (max-width: 767px) {
  .page-title {
    min-height: 325px;
    padding: 125px 0 36px;
  }

  .page-title::before {
    background-size: 68px 68px;
  }

  .page-title-breadcrumb {
    margin-bottom: 11px;
  }

  .page-title h1 {
    margin-bottom: 11px;
    font-size: clamp(1.75rem, 6.4vw, 2.35rem);
    line-height: 1.03;
    letter-spacing: -1.8px;
  }

  .page-title p {
    display: none;
  }

}

@media (max-width: 575px) {
  .page-title {
    min-height: 300px;
    padding: 116px 0 32px;
  }

  .page-title-content {
    padding-left: 12px;
  }

  .page-title-background img {
    object-position: 62% center;
  }

  .page-title-breadcrumb {
    margin-bottom: 10px;
  }

  .page-title h1 {
    font-size: clamp(1.65rem, 7vw, 2.05rem);
    letter-spacing: -1.3px;
  }
}

/*--------------------------------------------------------------
# About Info Section
--------------------------------------------------------------*/
.about-info {
  padding: 120px 0;
  overflow: hidden;
  background-color: var(--background-color);
}

.about-info-item {
  margin-bottom: 100px;
}

.about-info-item:last-child {
  margin-bottom: 0;
}

.about-info-item .row {
  min-height: 500px;
}

.about-info-item .row > [class*="col-"] {
  display: flex;
}

/*--------------------------------------------------------------
# About Info Image
--------------------------------------------------------------*/
.about-info-image {
  flex: 0 0 auto;
  align-self: center;
  width: 100%;
  height: 500px;
  min-height: 0;
  overflow: hidden;
  background-color: #e9eeee;
}

.about-info-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-info-item:hover .about-info-image img {
  transform: scale(1.025);
}

/*--------------------------------------------------------------
# About Info Content
--------------------------------------------------------------*/
.about-info-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 500px;
  min-height: 500px;
  padding: 32px 50px;
  background-color: transparent;
}

.about-info-item:nth-child(2) .about-info-content {
  background-color: transparent;
}

.about-info-item:nth-child(3) .about-info-content {
  background-color: transparent;
}

.about-info-item:nth-child(2) .about-info-subtitle::before {
  width: 46px;
}

.about-info-item:nth-child(3) .about-info-subtitle::before {
  width: 22px;
}

.about-info-item:nth-child(2) .about-info-list {
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 68%);
}

.about-info-item:nth-child(3) .about-info-list-item {
  border-bottom-color: color-mix(in srgb, var(--heading-color), transparent 84%);
}

.about-info-subtitle {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-info-subtitle::before {
  content: "";
  width: 32px;
  height: 1px;
  background-color: var(--accent-color);
}

.about-info-content h2 {
  max-width: 600px;
  margin: 0 0 18px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(2.1rem, 2.7vw, 3rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.about-info-content h2 strong {
  display: block;
  color: var(--accent-color);
  font-weight: 500;
}

.about-info-lead {
  max-width: 620px;
  margin: 0 0 10px;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 12%
  );
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

.about-info-content > p:not(.about-info-lead) {
  max-width: 620px;
  margin: 0 0 18px;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 35%
  );
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.55;
}

/*--------------------------------------------------------------
# About Info List
--------------------------------------------------------------*/
.about-info-list {
  border-top: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 80%
  );
}

.about-info-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 80%
  );
}

.about-info-list-item span {
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 22%
  );
  font-size: 0.9rem;
  font-weight: 400;
}

.about-info-list-item i {
  flex-shrink: 0;
  color: var(--accent-color);
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.about-info-list-item:hover i {
  transform: translate(3px, -3px);
}

/*--------------------------------------------------------------
# About Info Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .about-info-content {
    padding: 45px;
  }

  .about-info-content h2 {
    font-size: 2.7rem;
  }
}

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

  .about-info-item {
    margin-bottom: 70px;
  }

  .about-info-item .row {
    min-height: auto;
  }

  .about-info-item .row > [class*="col-"] {
    display: block;
  }

  .about-info-image {
    height: 400px;
    min-height: 0;
  }

  .about-info-content {
    height: auto;
    min-height: auto;
    padding: 55px 45px;
  }
}

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

  .about-info-item {
    margin-bottom: 55px;
  }

  .about-info-image {
    height: 300px;
  }

  .about-info-content {
    padding: 42px 28px;
  }

  .about-info-content h2 {
    font-size: 2.25rem;
    letter-spacing: -1.7px;
  }

  .about-info-lead {
    font-size: 0.96rem;
  }
}

@media (max-width: 575px) {
  .about-info-image {
    height: 270px;
  }

  .about-info-content {
    padding: 38px 22px;
  }

  .about-info-content h2 {
    font-size: 2rem;
  }

  .about-info-list-item span {
    font-size: 0.84rem;
  }
}

/*--------------------------------------------------------------
# Services Info Section
--------------------------------------------------------------*/
.services-info {
  padding: 54px 0 88px;
  background:
    linear-gradient(180deg, rgba(8, 53, 68, 0.025), transparent 35%),
    var(--background-color);
  overflow: hidden;
}

.services-info .services-info-header {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(460px, 0.82fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 52px;
  padding-bottom: 42px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
}

.services-info .services-info-heading {
  max-width: 820px;
}

.services-info .services-info-subtitle {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.services-info .services-info-heading h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 450;
  line-height: 1.07;
  letter-spacing: -2.8px;
  color: var(--heading-color);
}

.services-info .services-info-heading h2 span {
  color: var(--accent-color);
  font-weight: 500;
}

.services-info .services-info-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  padding-bottom: 4px;
}

.services-info .services-info-intro p {
  max-width: 390px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services-info .services-info-button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  background-color: #082f3b;
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #082f3b;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.services-info .services-info-button i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services-info .services-info-button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.services-info .services-info-button:hover i {
  transform: translate(3px, -3px);
}

.services-info .services-info-grid {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 32px;
}

.services-info .services-info-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: color-mix(in srgb, var(--background-color), var(--default-color) 3%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.services-info .services-info-item:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 68%);
  box-shadow: 0 18px 42px rgba(6, 31, 39, 0.08);
}

.services-info .services-info-image {
  position: relative;
  min-height: 330px;
  display: block;
  overflow: hidden;
  background-color: #071a22;
  text-decoration: none;
}

.services-info .services-info-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.04);
  transform: scale(1.01);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.5s ease;
}

.services-info .services-info-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(4, 18, 24, 0.08) 25%,
      rgba(4, 18, 24, 0.32) 58%,
      rgba(4, 18, 24, 0.92) 100%
    );
  transition: background 0.4s ease;
}

.services-info .services-info-number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.services-info .services-info-content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.services-info .services-info-content > span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.services-info .services-info-content h3 {
  max-width: 250px;
  margin: 0;
  padding-right: 40px;
  font-size: 22px;
  font-weight: 550;
  line-height: 1.16;
  letter-spacing: -0.55px;
  color: #ffffff;
}

.services-info .services-info-arrow {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #ffffff;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.services-info .services-info-arrow i {
  font-size: 14px;
}

.services-info .services-info-item > p {
  min-height: 112px;
  margin: 0;
  padding: 19px 20px 21px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
  color: color-mix(in srgb, var(--default-color), transparent 26%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
}

.services-info .services-info-item:hover .services-info-image img {
  transform: scale(1.055);
  filter: saturate(1);
}

.services-info .services-info-item:hover .services-info-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(4, 18, 24, 0.02) 15%,
      rgba(4, 18, 24, 0.23) 50%,
      rgba(4, 18, 24, 0.96) 100%
    );
}

.services-info .services-info-item:hover .services-info-arrow {
  opacity: 1;
  transform: translateY(0);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services Info Responsive
--------------------------------------------------------------*/
@media (max-width: 1399px) {
  .services-info .services-info-header {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
    gap: 50px;
  }

  .services-info .services-info-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .services-info .services-info-button {
    justify-self: start;
  }

  .services-info .services-info-image {
    min-height: 330px;
  }
}

@media (max-width: 991px) {
  .services-info {
    padding: 48px 0 72px;
  }

  .services-info .services-info-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
    margin-bottom: 52px;
  }

  .services-info .services-info-heading {
    max-width: 720px;
  }

  .services-info .services-info-heading h2 {
    letter-spacing: -2.5px;
  }

  .services-info .services-info-intro {
    max-width: 600px;
  }

  .services-info .services-info-image {
    min-height: 390px;
  }
}

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

  .services-info .services-info-header {
    gap: 28px;
    margin-bottom: 42px;
  }

  .services-info .services-info-subtitle {
    margin-bottom: 20px;
  }

  .services-info .services-info-heading h2 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
  }

  .services-info .services-info-intro {
    gap: 22px;
  }

  .services-info .services-info-intro p {
    font-size: 14px;
  }

  .services-info .services-info-button {
    min-height: 50px;
    padding: 0 20px;
    font-size: 12px;
  }

  .services-info .services-info-grid {
    --bs-gutter-y: 24px;
  }

  .services-info .services-info-item > p {
    min-height: auto;
    padding: 17px 18px 19px;
    font-size: 13px;
    line-height: 1.65;
  }

  .services-info .services-info-image {
    min-height: 400px;
  }

  .services-info .services-info-content {
    right: 22px;
    bottom: 23px;
    left: 22px;
  }

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

  .services-info .services-info-arrow {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 575px) {
  .services-info .services-info-image {
    min-height: 370px;
  }

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

  .services-info .services-info-content h3 {
    max-width: 220px;
    font-size: 23px;
  }
}

/* Services Info — editorial card layout */
.services-info .services-info-grid {
  --bs-gutter-x: 22px;
  --bs-gutter-y: 22px;
}

.services-info .services-info-item {
  min-height: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 238px 1fr;
  color: var(--default-color);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.services-info .services-info-item:hover {
  color: var(--default-color);
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 20px 44px rgba(6, 31, 39, 0.09);
}

.services-info .services-info-image {
  position: relative;
  min-height: 0;
  height: 238px;
  overflow: hidden;
  background-color: #082f3b;
}

.services-info .services-info-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 34, 44, 0.04), rgba(5, 34, 44, 0.22));
  pointer-events: none;
}

.services-info .services-info-image img {
  filter: saturate(0.72) contrast(1.03);
  transform: scale(1.015);
}

.services-info .services-info-content {
  position: static;
  z-index: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 22px 23px;
}

.services-info .services-info-meta {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 1.25px;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  text-transform: uppercase;
}

.services-info .services-info-number {
  position: static;
  flex: 0 0 auto;
  padding: 0 12px 0 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-color);
  border: 0;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.services-info .services-info-content h3 {
  max-width: none;
  margin: 0 0 15px;
  padding: 0;
  font-size: clamp(21px, 1.65vw, 25px);
  font-weight: 550;
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: var(--heading-color);
}

.services-info .services-info-content p {
  margin: 0 0 24px;
  font-size: 12.5px;
  line-height: 1.66;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

.services-info .services-info-content > .services-info-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: auto 0 0;
  padding: 0 0 6px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1px;
  color: var(--heading-color);
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 68%);
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.services-info .services-info-link i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

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

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

@media (max-width: 1199px) {
  .services-info .services-info-item {
    grid-template-columns: 1fr;
    grid-template-rows: 270px 1fr;
    min-height: 100%;
  }

  .services-info .services-info-image {
    min-height: 0;
    height: 270px;
  }
}

@media (max-width: 767px) {
  .services-info .services-info-item {
    grid-template-columns: 1fr;
    grid-template-rows: 255px 1fr;
  }

  .services-info .services-info-image {
    min-height: 0;
    height: 255px;
  }

  .services-info .services-info-content {
    padding: 25px 24px 24px;
  }

  .services-info .services-info-meta {
    margin-bottom: 20px;
  }

  .services-info .services-info-content h3 {
    margin-bottom: 12px;
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .services-info .services-info-item {
    grid-template-rows: 225px 1fr;
  }

  .services-info .services-info-image {
    min-height: 0;
    height: 225px;
  }
}

/* Services Info — linear editorial columns */
.services-info .services-info-item {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--default-color);
  background: transparent;
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 76%);
  overflow: visible;
  box-shadow: none;
  text-decoration: none;
  transform: none;
}

.services-info .services-info-item:hover {
  color: var(--default-color);
  border-color: var(--accent-color);
  box-shadow: none;
  transform: none;
}

.services-info .services-info-top {
  min-height: 125px;
  padding: 18px 2px 20px;
}

.services-info .services-info-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 23px;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 1.15px;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  text-transform: uppercase;
}

.services-info .services-info-number {
  position: static;
  padding: 0 10px 0 0;
  color: var(--accent-color);
  border: 0;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
}

.services-info .services-info-top h3 {
  max-width: 250px;
  margin: 0;
  font-size: clamp(22px, 1.8vw, 27px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.75px;
  color: var(--heading-color);
}

.services-info .services-info-image {
  position: relative;
  min-height: 0;
  height: 270px;
  overflow: hidden;
}

.services-info .services-info-image::after {
  background: linear-gradient(180deg, transparent 55%, rgba(5, 34, 44, 0.18));
}

.services-info .services-info-content {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  margin: 0;
  padding: 18px 2px 0;
}

.services-info .services-info-content p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 27%);
}

.services-info .services-info-content > .services-info-link {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 3px 2px 0 0;
  padding: 0;
  color: var(--heading-color);
  border: 0;
  border-radius: 0;
}

.services-info .services-info-link i {
  font-size: 18px;
}

.services-info .services-info-item:hover .services-info-link {
  color: var(--accent-color);
  background-color: transparent;
  border-color: transparent;
}

.services-info .services-info-item:hover .services-info-link i {
  transform: translate(2px, -2px);
}

@media (max-width: 1199px) {
  .services-info .services-info-top {
    min-height: 116px;
  }

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

@media (max-width: 767px) {
  .services-info .services-info-top {
    min-height: 0;
    padding-top: 17px;
  }

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

  .services-info .services-info-content {
    padding-top: 16px;
  }
}

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

/*--------------------------------------------------------------
# Marine Operations
--------------------------------------------------------------*/
.marine-operations {
  padding: 80px 0;
  background: transparent;
}

.marine-operations .row > [class*="col-"] {
  display: flex;
}

.marine-operations-image {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  min-height: 520px;
  overflow: hidden;
}

.marine-operations-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.marine-operations-list {
  flex: 1 1 auto;
  width: 100%;
  max-width: 620px;
  min-height: 520px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  counter-reset: operation;
}

.marine-operation-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  padding: 30px 4px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  counter-increment: operation;
  transition: padding-left 0.3s ease, border-color 0.3s ease;
}

.marine-operation-item:first-child {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
}

.marine-operation-item::before {
  content: "0" counter(operation);
  grid-row: 1 / span 2;
  padding-top: 1px;
  color: var(--accent-color);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 1px;
}

.marine-operation-item:hover {
  padding-left: 8px;
  border-color: color-mix(in srgb, var(--accent-color), transparent 48%);
}

.marine-operation-label {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 1.45px;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
}

.marine-operation-label i {
  display: none;
}

.marine-operation-item h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.3rem, 1.75vw, 1.72rem);
  font-weight: 450;
  line-height: 1.32;
  letter-spacing: -0.6px;
  color: var(--heading-color);
}

.marine-operation-item:nth-child(2) h3 {
  max-width: 540px;
  color: color-mix(in srgb, var(--heading-color), var(--accent-color) 12%);
}

.marine-operation-item:nth-child(3) .marine-operation-label {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .marine-operations {
    padding: 60px 0;
  }

  .marine-operations .row > [class*="col-"] {
    display: block;
  }

  .marine-operations-image {
    height: 400px;
    min-height: 0;
  }

  .marine-operations-list {
    max-width: none;
    min-height: 0;
  }
}

@media (max-width: 575px) {
  .marine-operations-image {
    height: 300px;
    min-height: 0;
  }

  .marine-operation-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 24px 0;
  }

  .marine-operation-item h3 {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Operations Network
--------------------------------------------------------------*/
.operations-network {
  padding: 100px 0;
  background: #063b3d;
  overflow: hidden;
}

.operations-network-header {
  max-width: 650px;
  margin-bottom: 42px;
}

.operations-network-header > span {
  display: block;
  margin-bottom: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #83d9ca;
  letter-spacing: 1.8px;
}

.operations-network-header h2 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
  color: #ffffff;
}

.operations-network-header p {
  max-width: 580px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
}

.operations-map-wrapper {
  position: relative;
  height: 510px;
  overflow: hidden;
  background: #073638;
}

.operations-map {
  width: 100%;
  height: 100%;
  background: #073638;
}

.operations-map-badge {
  position: absolute;
  z-index: 500;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  font-size: 0.72rem;
  color: #ffffff;
  background: rgba(4, 42, 44, 0.88);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.operations-map-badge span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #063b3d;
  background: #83d9ca;
  font-weight: 700;
}

.operations-location-list {
  position: relative;
  z-index: 600;
  margin-top: -45px;
  padding: 0 25px;
}

.operations-location-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 140px;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  border: 1px solid transparent;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: 0.3s ease;
}

.operations-location-card:hover,
.operations-location-card.active {
  transform: translateY(-7px);
  border-color: #83d9ca;
}

.operations-location-card .location-number {
  font-size: 0.7rem;
  font-weight: 600;
  color: #b2b7b6;
}

.operations-location-card .location-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.operations-location-card small {
  margin-bottom: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #78908e;
  letter-spacing: 1px;
}

.operations-location-card strong {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 500;
  color: #102929;
}

.operations-location-card .location-content > span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #7b8584;
}

.operations-location-card > i {
  font-size: 1.35rem;
  color: #d2ad6c;
}

/* Leaflet Controls */
.operations-map .leaflet-control-zoom {
  margin-top: 24px;
  margin-left: 24px;
  border: 0;
  box-shadow: none;
}

.operations-map .leaflet-control-zoom a {
  width: 38px;
  height: 38px;
  border: 0;
  border-bottom: 1px solid rgba(6, 59, 61, 0.15);
  border-radius: 0;
  color: #063b3d;
  line-height: 38px;
  background: #ffffff;
}

.operations-map .leaflet-control-attribution {
  font-size: 9px;
  background: rgba(255, 255, 255, 0.7);
}

/* Custom Marker */
.operation-marker {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #83d9ca;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.operation-marker::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(131, 217, 202, 0.45);
  border-radius: 50%;
  animation: operationPulse 2s infinite;
}

.operation-marker i {
  position: relative;
  z-index: 2;
  font-size: 15px;
  color: #063b3d;
}

@keyframes operationPulse {
  0% {
    opacity: 1;
    transform: scale(0.65);
  }

  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

/* Popup */
.operations-popup .leaflet-popup-content-wrapper {
  border-radius: 0;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

.operations-popup .leaflet-popup-content {
  min-width: 220px;
  margin: 20px;
}

.operations-popup small {
  display: block;
  margin-bottom: 7px;
  font-size: 0.62rem;
  color: #78908e;
  letter-spacing: 1px;
}

.operations-popup strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #102929;
}

.operations-popup p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #727c7b;
}

.operations-popup .leaflet-popup-tip {
  background: #ffffff;
}

@media (max-width: 991px) {
  .operations-network {
    padding: 75px 0;
  }

  .operations-map-wrapper {
    height: 450px;
  }

  .operations-location-list {
    margin-top: 20px;
    padding: 0;
  }

  .operations-location-card:hover,
  .operations-location-card.active {
    transform: translateY(-3px);
  }
}

@media (max-width: 575px) {
  .operations-network {
    padding: 60px 0;
  }

  .operations-network-header {
    margin-bottom: 30px;
  }

  .operations-network-header h2 {
    font-size: 2.5rem;
  }

  .operations-map-wrapper {
    height: 370px;
  }

  .operations-map-badge {
    top: 15px;
    right: 15px;
  }

  .operations-location-card {
    min-height: 125px;
    padding: 21px;
  }
}

/* Operations Network — split editorial layout */
.operations-network {
  padding: 96px 0;
  background: transparent;
  overflow: hidden;
}

.operations-network-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  min-height: 680px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
}

.operations-network-panel {
  display: flex;
  flex-direction: column;
  padding: 42px 54px 34px 0;
}

.operations-network-header {
  max-width: 470px;
  margin: 0;
}

.operations-network-header > span {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 1.6px;
}

.operations-network-header > span::before {
  content: "";
  width: 28px;
  height: 1px;
  background-color: var(--accent-color);
}

.operations-network-header h2 {
  margin: 0 0 22px;
  color: var(--heading-color);
  font-size: clamp(3rem, 4.7vw, 4.9rem);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -3.5px;
}

.operations-network-header h2 strong {
  color: var(--accent-color);
  font-weight: 520;
}

.operations-network-header p {
  max-width: 420px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-size: 0.92rem;
  line-height: 1.68;
}

.operations-network-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 17px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
}

.operations-network-stat strong {
  color: var(--heading-color);
  font-size: 1.65rem;
  font-weight: 450;
  line-height: 1;
  letter-spacing: -1px;
}

.operations-network-stat span {
  padding-left: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
  font-size: 0.64rem;
  font-weight: 550;
  line-height: 1.45;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.operations-location-list {
  position: static;
  z-index: auto;
  display: flex;
  flex-direction: column;
  margin: auto 0 0;
  padding: 26px 0 0;
}

.operations-location-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 17px 2px;
  color: var(--default-color);
  background: transparent;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  text-align: left;
  transition: padding-left 0.3s ease, border-color 0.3s ease;
}

.operations-location-card:first-child {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
}

.operations-location-card:hover,
.operations-location-card.active {
  padding-left: 9px;
  background: transparent;
  border-color: var(--accent-color);
  transform: none;
}

.operations-location-card .location-number {
  color: color-mix(in srgb, var(--default-color), transparent 52%);
  font-size: 0.65rem;
  font-weight: 650;
}

.operations-location-card.active .location-number {
  color: var(--accent-color);
}

.operations-location-card small {
  margin-bottom: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 48%);
  font-size: 0.58rem;
  letter-spacing: 1.1px;
}

.operations-location-card strong {
  margin-bottom: 3px;
  color: var(--heading-color);
  font-size: 0.98rem;
  font-weight: 520;
}

.operations-location-card .location-content > span {
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  font-size: 0.7rem;
  line-height: 1.4;
}

.operations-location-card > i {
  color: color-mix(in srgb, var(--default-color), transparent 54%);
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.operations-location-card:hover > i,
.operations-location-card.active > i {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.operations-map-wrapper {
  position: relative;
  height: auto;
  min-height: 680px;
  overflow: hidden;
  background: #111716;
}

.operations-map-badge {
  top: 22px;
  right: 22px;
  gap: 10px;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.62rem;
  font-weight: 550;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.operations-map-badge span {
  width: 6px;
  height: 6px;
  display: block;
  background: #ffffff;
  border-radius: 50%;
}

.operations-map-caption {
  position: absolute;
  z-index: 500;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.58rem;
  font-weight: 550;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  pointer-events: none;
}

.operations-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.operations-route-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.operations-coastline {
  fill: rgba(255, 255, 255, 0.045);
}

.operations-coastline-detail {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1.2;
}

.operations-route,
.operations-route-dash {
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}

.operations-route-main {
  stroke: rgba(255, 255, 255, 0.68);
}

.operations-route-dash {
  stroke-dasharray: 6 8;
  stroke: rgba(255, 255, 255, 0.18);
}

.operations-map-index {
  position: absolute;
  top: 24px;
  left: 24px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.8px;
}

.operations-map-direction {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.58rem;
  font-weight: 650;
}

.operations-map-direction i {
  width: 1px;
  height: 34px;
  background: linear-gradient(#ffffff, rgba(255, 255, 255, 0.08));
}

.operations-map-node {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 12px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transform: translate(-6px, -6px);
}

.operations-map-node .node-point {
  grid-row: 1 / span 2;
  width: 10px;
  height: 10px;
  margin-top: 4px;
  background: #111716;
  border: 1px solid rgba(255, 255, 255, 0.75);
  transform: rotate(45deg);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.operations-map-node small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.52rem;
  font-weight: 650;
  letter-spacing: 1px;
}

.operations-map-node strong {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 520;
  letter-spacing: 0.3px;
}

.operations-map-node:hover .node-point,
.operations-map-node.active .node-point {
  background-color: #ffffff;
  transform: rotate(45deg) scale(1.25);
}

.operations-map-node.active strong {
  color: #ffffff;
}

.operations-map-node.node-mersin {
  top: 52%;
  left: 25.6%;
}

.operations-map-node.node-ceyhan {
  top: 48.4%;
  left: 61.5%;
}

.operations-map-node.node-iskenderun {
  top: 60%;
  left: 75.6%;
}

.operations-map-legend {
  position: absolute;
  bottom: 54px;
  left: 22px;
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.53rem;
  font-weight: 550;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.operations-map-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.operations-map-legend i {
  width: 15px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.55);
}

.operations-map-legend span:first-child i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background-color: transparent;
  transform: rotate(45deg);
}

@media (max-width: 991px) {
  .operations-network {
    padding: 72px 0;
  }

  .operations-network-layout {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .operations-network-panel {
    padding: 34px 0 44px;
  }

  .operations-network-header {
    max-width: 640px;
  }

  .operations-location-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
    padding-top: 0;
  }

  .operations-location-card,
  .operations-location-card:first-child {
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: start;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  }

  .operations-location-card > i {
    display: none;
  }

  .operations-map-wrapper {
    min-height: 480px;
    height: 480px;
  }
}

@media (max-width: 767px) {
  .operations-network {
    padding: 58px 0;
  }

  .operations-network-header h2 {
    font-size: 3.4rem;
    letter-spacing: -2.5px;
  }

  .operations-location-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .operations-location-card:not(:first-child) {
    border-top: 0;
  }

  .operations-map-wrapper {
    min-height: 390px;
    height: 390px;
  }

  .operations-map-grid {
    background-size: 34px 34px;
  }

  .operations-map-node strong {
    font-size: 0.62rem;
  }

  .operations-map-legend {
    gap: 14px;
  }
}

/* Operations Network — map-first selector */
.operations-network-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 38px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
}

.operations-network-intro > div > span {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 1.6px;
}

.operations-network-intro > div > span::before {
  content: "";
  width: 28px;
  height: 1px;
  background-color: var(--accent-color);
}

.operations-network-intro h2 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -3.2px;
}

.operations-network-intro h2 strong {
  color: var(--accent-color);
  font-weight: 520;
}

.operations-network-intro > p {
  max-width: 440px;
  margin: 0 0 5px;
  padding-left: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  font-size: 0.9rem;
  line-height: 1.68;
}

.operations-map-interactive {
  width: 100%;
  height: 690px;
  min-height: 690px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.operations-map-land {
  position: absolute;
  top: 6%;
  left: 7%;
  width: 86%;
  aspect-ratio: 1005 / 490;
  z-index: 1;
}

.operations-turkey-map,
.operations-map-interactive .operations-route-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.operations-turkey-map {
  z-index: 1;
  display: block;
  opacity: 0.58;
  filter: grayscale(1) brightness(1.34) contrast(0.92);
}

.operations-map-interactive .operations-route-map {
  z-index: 2;
  pointer-events: none;
}

.operations-map-interactive .operations-route {
  stroke: rgba(255, 255, 255, 0.54);
  stroke-width: 1.25;
}

.operations-map-interactive .operations-route-main {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.65;
}

.operations-map-interactive .operations-route-dash {
  stroke: rgba(255, 255, 255, 0.24);
}

.operations-map-node.node-mersin {
  top: 75.5%;
  left: 42.8%;
}

.operations-map-node.node-ceyhan {
  top: 74.5%;
  left: 55.2%;
}

.operations-map-node.node-iskenderun {
  top: 80.6%;
  left: 62.2%;
}

.operations-map-detail {
  position: absolute;
  z-index: 6;
  bottom: 72px;
  left: 26px;
  width: min(430px, calc(100% - 52px));
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: start;
  gap: 17px;
  padding: 21px 22px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.map-detail-index {
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 1px;
}

.operations-map-detail small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 1.2px;
}

.operations-map-detail h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.35px;
}

.operations-map-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.5;
}

.operations-map-detail > i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.operations-map-hint {
  position: absolute;
  z-index: 5;
  top: 23px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(0, 0, 0, 0.42);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  transform: translateX(-50%);
  pointer-events: none;
}

.operations-map-node {
  z-index: 8;
}

@media (max-width: 991px) {
  .operations-network-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
  }

  .operations-network-intro > p {
    max-width: 620px;
  }

  .operations-map-interactive {
    height: 570px;
    min-height: 570px;
  }
}

@media (max-width: 767px) {
  .operations-network-intro {
    margin-bottom: 28px;
  }

  .operations-network-intro h2 {
    font-size: 3.2rem;
    letter-spacing: -2.4px;
  }

  .operations-network-intro > p {
    padding-left: 18px;
  }

  .operations-map-interactive {
    height: 520px;
    min-height: 520px;
  }

  .operations-map-land {
    top: 8%;
    left: 3%;
    width: 94%;
  }

  .operations-map-detail {
    bottom: 64px;
    left: 15px;
    width: calc(100% - 30px);
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding: 17px;
  }

  .operations-map-detail > i {
    display: none;
  }

  .operations-map-hint {
    display: none;
  }

  .operations-map-caption {
    right: 15px;
    left: 15px;
  }
}

/* Operations Network — interactive province map */
.operations-province-map {
  overflow: hidden;
  background-color: #f1f4f6;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 87%);
}

.operations-map-toolbar,
.operations-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.operations-map-toolbar {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.operations-map-toolbar small {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: inherit;
}

.operations-map-canvas {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background:
    linear-gradient(rgba(11, 36, 43, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 36, 43, 0.025) 1px, transparent 1px),
    #f7f9fa;
  background-size: 54px 54px;
}

.operations-map-shape {
  position: absolute;
  top: 24px;
  left: 6%;
  z-index: 1;
  width: 88%;
  aspect-ratio: 1005 / 490;
}

.operations-map-object {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.operations-map-hotspot {
  position: absolute;
  z-index: 4;
  width: 20px;
  height: 20px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--heading-color);
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.operations-map-hotspot::after {
  content: "";
  position: absolute;
  inset: 5px;
  background-color: var(--heading-color);
}

.operations-map-hotspot:hover,
.operations-map-hotspot.active {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  transform: translate(-50%, -50%) rotate(45deg) scale(1.12);
}

.operations-map-hotspot:hover::after,
.operations-map-hotspot.active::after {
  background-color: #ffffff;
}

.hotspot-mersin {
  top: 75.5%;
  left: 42.8%;
}

.hotspot-ceyhan {
  top: 74.5%;
  left: 55.2%;
}

.hotspot-iskenderun {
  top: 80.6%;
  left: 62.2%;
}

.operations-province-tooltip {
  position: absolute;
  z-index: 6;
  width: 275px;
  padding: 19px 20px 20px;
  color: #ffffff;
  background-color: #0d252c;
  box-shadow: 0 18px 38px rgba(8, 28, 34, 0.16);
  transition: top 0.35s ease, left 0.35s ease;
  pointer-events: none;
}

.operations-province-map[data-active-location="mersin"] .operations-province-tooltip {
  top: 43%;
  left: 27%;
}

.operations-province-map[data-active-location="ceyhan"] .operations-province-tooltip {
  top: 41%;
  left: 48%;
}

.operations-province-map[data-active-location="iskenderun"] .operations-province-tooltip {
  top: 46%;
  left: 57%;
}

.operations-province-tooltip .map-detail-index {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.42);
}

.operations-province-tooltip small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.55rem;
  font-weight: 650;
  letter-spacing: 1.2px;
}

.operations-province-tooltip h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 520;
  letter-spacing: -0.35px;
}

.operations-province-tooltip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.71rem;
  line-height: 1.55;
}

.operations-map-footer {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.operations-map-footer strong {
  margin-right: 5px;
  color: var(--heading-color);
  font-size: 0.85rem;
  font-weight: 650;
}

@media (max-width: 991px) {
  .operations-map-canvas {
    min-height: 470px;
  }

  .operations-province-tooltip {
    width: 245px;
  }
}

@media (max-width: 767px) {
  .operations-map-toolbar,
  .operations-map-footer {
    gap: 14px;
    padding: 14px;
  }

  .operations-map-toolbar small {
    display: none;
  }

  .operations-map-canvas {
    min-height: 430px;
  }

  .operations-map-shape {
    top: 22px;
    left: 1%;
    width: 98%;
  }

  .operations-province-map .operations-province-tooltip,
  .operations-province-map[data-active-location] .operations-province-tooltip {
    top: auto;
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }

  .operations-map-footer span:last-child {
    display: none;
  }
}

/* Operations Network — clean map and port cards */
.operations-province-map {
  overflow: visible;
  background: transparent;
  border: 0;
}

.operations-map-canvas {
  position: relative;
  min-height: clamp(300px, 46vw, 610px);
  overflow: visible;
  background: transparent;
}

.operations-map-shape {
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  -webkit-mask-image: none;
  mask-image: none;
}

.operations-map-object {
  background: transparent;
}

.operations-map-object:focus,
.operations-map-object:focus-visible {
  outline: none;
}

.operations-map-hotspot {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-color: var(--heading-color);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.68);
}

.operations-map-hotspot::after {
  inset: 4px;
}

.operations-map-hotspot:hover,
.operations-map-hotspot.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-color), transparent 78%);
}

.operations-port-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.operations-port-card {
  position: relative;
  min-height: 166px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: start;
  gap: 15px;
  padding: 23px 22px;
  color: var(--default-color);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.operations-port-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.35s ease;
}

.operations-port-card:hover,
.operations-port-card.active {
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 48%);
  transform: translateY(-3px);
}

.operations-port-card:hover::before,
.operations-port-card.active::before {
  width: calc(100% + 2px);
}

.port-card-number {
  padding-top: 2px;
  color: color-mix(in srgb, var(--default-color), transparent 52%);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 1px;
}

.operations-port-card.active .port-card-number {
  color: var(--accent-color);
}

.port-card-content {
  display: flex;
  flex-direction: column;
}

.port-card-content small {
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 46%);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 1.2px;
}

.port-card-content strong {
  margin-bottom: 9px;
  color: var(--heading-color);
  font-size: 1.08rem;
  font-weight: 520;
  line-height: 1.2;
  letter-spacing: -0.35px;
}

.port-card-content > span {
  max-width: 290px;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-size: 0.72rem;
  line-height: 1.55;
}

.operations-port-card > i {
  color: color-mix(in srgb, var(--default-color), transparent 52%);
  font-size: 0.92rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.operations-port-card:hover > i,
.operations-port-card.active > i {
  color: var(--accent-color);
  transform: translate(2px, -2px);
}

@media (max-width: 991px) {
  .operations-map-canvas {
    min-height: clamp(280px, 50vw, 460px);
  }

  .operations-port-list {
    gap: 12px;
  }

  .operations-port-card {
    grid-template-columns: 25px minmax(0, 1fr);
    padding: 20px 18px;
  }

  .operations-port-card > i {
    display: none;
  }
}

@media (max-width: 767px) {
  .operations-map-canvas {
    min-height: 280px;
    overflow: hidden;
  }

  .operations-map-canvas::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    background: radial-gradient(
      ellipse 64% 62% at 43% 59%,
      transparent 14%,
      rgba(255, 255, 255, 0.08) 30%,
      rgba(255, 255, 255, 0.28) 48%,
      rgba(255, 255, 255, 0.58) 67%,
      rgba(255, 255, 255, 0.86) 84%,
      #ffffff 100%
    );
  }

  .operations-map-shape {
    top: 22%;
    left: -22.5%;
    width: 145%;
    -webkit-mask-image: radial-gradient(ellipse 66% 70% at 42% 62%, #000 12%, rgba(0, 0, 0, 0.82) 30%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.2) 64%, transparent 82%);
    mask-image: radial-gradient(ellipse 66% 70% at 42% 62%, #000 12%, rgba(0, 0, 0, 0.82) 30%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.2) 64%, transparent 82%);
  }

  .operations-port-list {
    grid-template-columns: 1fr;
    margin-top: 8px;
  }

  .operations-port-card {
    min-height: 0;
  }
}

/*--------------------------------------------------------------
# Marine CTA Section
--------------------------------------------------------------*/
.marine-cta {
  position: relative;
  overflow: hidden;
  padding: 68px 0 24px;
  background-color: #0a0a0a;
  isolation: isolate;
}

.marine-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/yildiz-denizcilik-cta.jpg") center 46% / cover no-repeat;
  filter: grayscale(0.35);
  transform: scale(1.02);
}

.marine-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.72);
}

.marine-cta::after {
  display: none;
}

.marine-cta-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 64px;
  padding-bottom: 46px;
}

.marine-cta-content {
  max-width: 850px;
}

.marine-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.marine-cta-kicker span {
  display: block;
  width: 38px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.72);
}

.marine-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.45vw, 3.65rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -3px;
}

.marine-cta h2 strong {
  display: block;
  color: #ffffff;
  font-weight: 500;
}

.marine-cta-action {
  padding-left: 35px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.marine-cta-action p {
  max-width: 440px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .marine-cta-action p {
    display: none;
  }
}

.marine-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
  min-height: 45px;
  padding: 0 23px;
  color: #152028;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.2),
    inset 0 -2px 0 rgba(21, 32, 40, 0.12);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.marine-cta-button:hover {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
  box-shadow: none;
  transform: translateY(-3px);
}

.marine-cta-button:hover > i {
  transform: translate(2px, -2px);
}

.marine-cta-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.marine-cta-bottom span {
  position: relative;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.marine-cta-bottom span:last-child {
  padding-right: 0;
}

.marine-cta-bottom span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Marine CTA Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .marine-cta {
    padding-top: 60px;
  }

  .marine-cta-wrapper {
    gap: 55px;
  }

  .marine-cta h2 {
    letter-spacing: -3px;
  }
}

@media (max-width: 991px) {
  .marine-cta-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 42px;
  }

  .marine-cta-action {
    max-width: 620px;
    padding-left: 0;
    padding-top: 35px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .marine-cta-action p {
    max-width: 560px;
  }

  .marine-cta-bottom {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .marine-cta {
    padding: 54px 0 22px;
  }

  .marine-cta-wrapper {
    gap: 38px;
    padding-bottom: 36px;
  }

  .marine-cta-kicker {
    margin-bottom: 22px;
    font-size: 0.67rem;
    letter-spacing: 1.8px;
  }

  .marine-cta h2 {
    font-size: clamp(2.15rem, 9.5vw, 3.25rem);
    line-height: 1.06;
    letter-spacing: -2.5px;
  }

  .marine-cta-action {
    padding-top: 28px;
  }

  .marine-cta-action p {
    margin-bottom: 28px;
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .marine-cta-button {
    width: auto;
    min-width: 0;
  }

  .marine-cta-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 20px;
  }

  .marine-cta-bottom span {
    padding: 0;
    font-size: 7px;
    letter-spacing: 1px;
  }

  .marine-cta-bottom span:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .marine-cta h2 {
    font-size: 2.15rem;
    letter-spacing: -2px;
  }

  .marine-cta-button {
    padding: 0 20px;
    font-size: 11px;
  }
}

.marine-cta-compact h2 {
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -2px;
}

@media (max-width: 767px) {
  .marine-cta-compact h2 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    letter-spacing: -1.6px;
  }
}

@media (max-width: 480px) {
  .marine-cta-compact h2 {
    font-size: 2rem;
    letter-spacing: -1.3px;
  }
}

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

.about-item {
  position: relative;
  padding: 0 0 100px;
  margin-bottom: 100px;
  border-bottom: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
}

.about-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.about-item .row {
  align-items: center;
}

.about-item .row > [class*="col-"] {
  position: relative;
}

/*--------------------------------------------------------------
# About Image
--------------------------------------------------------------*/
.about-image {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background-color: #e8edef;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(4, 27, 39, 0.16) 100%
  );
  pointer-events: none;
}

.about-image::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  width: 58px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.9);
}

.about-item:nth-child(even) .about-image::after,
.about-item-reverse .about-image::after {
  right: auto;
  left: 28px;
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-item:hover .about-image img {
  transform: scale(1.025);
}

/*--------------------------------------------------------------
# About Content
--------------------------------------------------------------*/
.about-content {
  position: relative;
  padding: 45px 0 45px 70px;
}

.about-item:nth-child(even) .about-content,
.about-item-reverse .about-content {
  padding: 45px 70px 45px 0;
}

.about-content::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 28px;
  width: 1px;
  height: calc(100% - 96px);
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 60%
  );
}

.about-item:nth-child(even) .about-content::before,
.about-item-reverse .about-content::before {
  right: 28px;
  left: auto;
}

.about-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--accent-color);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-subtitle::before {
  content: "";
  width: 24px;
  height: 1px;
  background-color: var(--accent-color);
}

.about-content h2 {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 3vw, 3.15rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -2.6px;
}

.about-content h2 strong {
  display: block;
  color: var(--accent-color);
  font-weight: 500;
}

.about-lead {
  max-width: 600px;
  margin: 0 0 12px;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 8%
  );
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.about-content > p:not(.about-lead) {
  max-width: 600px;
  margin: 0 0 28px;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 35%
  );
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
}

/*--------------------------------------------------------------
# About List
--------------------------------------------------------------*/
.about-list {
  max-width: 610px;
  border-top: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 82%
  );
}

.about-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 82%
  );
}

.about-list-item span {
  position: relative;
  padding-left: 17px;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 18%
  );
  font-size: 0.9rem;
  font-weight: 400;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.about-list-item span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-color);
  transform: translateY(-50%);
}

.about-list-item i {
  flex-shrink: 0;
  color: var(--accent-color);
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.about-list-item:hover span {
  color: var(--heading-color);
  transform: translateX(4px);
}

.about-list-item:hover i {
  transform: translate(3px, -3px);
}

/*--------------------------------------------------------------
# About Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .about-image {
    height: 480px;
  }

  .about-content {
    padding-left: 55px;
  }

  .about-item:nth-child(even) .about-content,
  .about-item-reverse .about-content {
    padding-right: 55px;
  }

  .about-content::before {
    left: 20px;
  }

  .about-item:nth-child(even) .about-content::before,
  .about-item-reverse .about-content::before {
    right: 20px;
  }
}

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

  .about-item {
    padding-bottom: 75px;
    margin-bottom: 75px;
  }

  .about-image {
    height: 400px;
  }

  .about-content,
  .about-item:nth-child(even) .about-content,
  .about-item-reverse .about-content {
    padding: 45px 0 0;
  }

  .about-content::before,
  .about-item:nth-child(even) .about-content::before,
  .about-item-reverse .about-content::before {
    top: 0;
    right: auto;
    left: 0;
    width: 55px;
    height: 1px;
  }
}

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

  .about-item {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }

  .about-image {
    height: 320px;
  }

  .about-image::after {
    top: 20px;
    right: 20px;
    width: 42px;
  }

  .about-item:nth-child(even) .about-image::after,
  .about-item-reverse .about-image::after {
    left: 20px;
  }

  .about-content,
  .about-item:nth-child(even) .about-content,
  .about-item-reverse .about-content {
    padding-top: 38px;
  }

  .about-content h2 {
    font-size: 2.25rem;
    letter-spacing: -1.8px;
  }

  .about-lead {
    font-size: 0.96rem;
  }

  .about-list-item:hover span {
    transform: none;
  }
}

@media (max-width: 575px) {
  .about-image {
    height: 275px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-list-item {
    min-height: 50px;
  }

  .about-list-item span {
    max-width: calc(100% - 35px);
    font-size: 0.84rem;
  }
}

/*--------------------------------------------------------------
# Vision Mission Section
--------------------------------------------------------------*/
.vision-mission {
  position: relative;
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Section Header
--------------------------------------------------------------*/
.vision-mission-header {
  padding-bottom: 52px;
  border-bottom: 1px solid #dfe3e5;
}

.vision-mission-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #606a70;
}

.vision-mission-subtitle::before {
  content: "";
  width: 32px;
  height: 1px;
  background-color: currentColor;
}

.vision-mission-header h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.45rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -0.055em;
  color: #12182a;
}

.vision-mission-header h2 strong {
  display: block;
  color: #12171a;
  font-weight: 600;
}

.vision-mission-header p {
  max-width: 480px;
  margin: 0 0 5px auto;
  font-size: 0.96rem;
  line-height: 1.72;
  color: #667079;
}

/*--------------------------------------------------------------
# Vision Mission Content
--------------------------------------------------------------*/
.vision-mission-content {
  margin-top: 50px;
  border: 1px solid #dfe3e5;
}

.vision-mission-item {
  position: relative;
  min-height: 500px;
  height: 100%;
  padding: 42px 46px 50px;
  overflow: hidden;
  background: #ffffff;
  border: 0;
  box-shadow: none;
  transition: background-color 0.3s ease;
}

.vision-item {
  border-right: 1px solid #dfe3e5;
}

.mission-item {
  color: inherit;
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

.vision-mission-item:hover {
  background-color: #fafafa;
}

.vision-mission-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid #e1e5e7;
}

.vision-mission-number {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #9aa3a8;
}

.vision-mission-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5f686d;
}

.vision-mission-item-body {
  padding-top: 38px;
}

.vision-mission-item-body h3 {
  max-width: 520px;
  margin: 0 0 25px;
  font-size: clamp(1.9rem, 2.7vw, 2.75rem);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -0.045em;
  color: #12182a;
}

.vision-mission-item-body h3 strong {
  display: block;
  font-weight: 600;
}

.vision-mission-item-body p {
  max-width: 510px;
  margin: 0 0 18px;
  font-size: 0.92rem;
  line-height: 1.72;
  color: #68737b;
}

.mission-item .vision-mission-item-top {
  border-bottom-color: #e1e5e7;
}

.mission-item .vision-mission-number,
.mission-item .vision-mission-label {
  color: #697278;
}

.mission-item .vision-mission-item-body h3,
.mission-item .vision-mission-item-body h3 strong {
  color: #12182a;
}

.mission-item .vision-mission-item-body p {
  color: #68737b;
}

.vision-mission-item-body p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Corporate Values
--------------------------------------------------------------*/
.vision-mission-values {
  padding-top: 72px;
}

.vision-mission-values-title {
  margin-bottom: 35px;
}

.vision-mission-values-title span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #606a70;
}

.vision-mission-values .row {
  border-top: 1px solid #dfe3e5;
  border-left: 1px solid #dfe3e5;
}

.vision-value-item {
  position: relative;
  min-height: 225px;
  height: 100%;
  padding: 30px 26px;
  background: #ffffff;
  border: 0;
  border-right: 1px solid #dfe3e5;
  border-bottom: 1px solid #dfe3e5;
  transition: background-color 0.3s ease;
}

.vision-value-item:hover {
  background-color: #f7f8f8;
}

.vision-value-item > span {
  display: block;
  margin-bottom: 42px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #8c969b;
}

.vision-value-item h4 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #12182a;
}

.vision-value-item p {
  max-width: 240px;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.75;
  color: #6d767e;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .vision-mission {
    padding: 90px 0;
  }

  .vision-mission-header {
    padding-bottom: 55px;
  }

  .vision-mission-header p {
    margin-top: 25px;
    margin-left: 0;
  }

  .vision-mission-item {
    min-height: auto;
    padding: 45px 35px 55px;
  }

  .vision-item {
    border-right: 0;
    border-bottom: 1px solid #dce2e5;
  }

  .vision-mission-values {
    padding-top: 65px;
  }
}

@media (max-width: 767px) {
  .vision-mission {
    padding: 65px 0;
  }

  .vision-mission-subtitle {
    margin-bottom: 30px;
  }

  .vision-mission-header {
    padding-bottom: 45px;
  }

  .vision-mission-header h2 {
    font-size: 2.7rem;
  }

  .vision-mission-header p {
    font-size: 0.92rem;
  }

  .vision-mission-item {
    padding: 35px 22px 45px;
  }

  .vision-mission-item-top {
    padding-bottom: 25px;
  }

  .vision-mission-item-body {
    padding-top: 35px;
  }

  .vision-mission-item-body h3 {
    font-size: 2.15rem;
  }

  .vision-mission-values {
    padding-top: 50px;
  }

  .vision-value-item {
    min-height: auto;
    padding: 30px 22px;
  }

  .vision-value-item > span {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Services Showcase Section
--------------------------------------------------------------*/
.services-showcase {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background-color: #ffffff;
}

.services-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 1px;
  background-color: rgba(17, 35, 49, 0.18);
}

.services-showcase .service-card {
  position: relative;
  height: 570px;
  padding-top: 13px;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  border: 0;
  border-top: 1px solid #cfd5d8;
  transition:
    border-color 0.35s ease;
}

.services-showcase .service-card:hover {
  transform: none;
  border-color: #59646a;
  box-shadow: none;
}

/* Image */
.services-showcase .service-card-image {
  position: relative;
  flex: 0 0 auto;
  display: block;
  height: 270px;
  overflow: hidden;
  background-color: #e7eaeb;
}

.services-showcase .service-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 24, 34, 0.04) 35%,
    rgba(9, 24, 34, 0.38) 100%
  );
  transition: background 0.4s ease;
}

.services-showcase .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.services-showcase .service-card:hover .service-card-image img {
  transform: scale(1.055);
}

/* Number */
.services-showcase .service-card-number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  padding-left: 43px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.services-showcase .service-card-number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-50%);
}

/* Image Hover Content */
.services-showcase .service-card-overlay {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #ffffff;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.services-showcase .service-card-overlay span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-showcase .service-card-overlay i {
  font-size: 1.35rem;
}

.services-showcase .service-card:hover .service-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Content */
.services-showcase .service-card-content {
  position: relative;
  flex: 1 1 auto;
  padding: 25px 4px 0;
  display: flex;
  flex-direction: column;
}

.services-showcase .service-card-category {
  display: block;
  margin-bottom: 13px;
  color: #737d82;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.services-showcase .service-card h3 {
  min-height: 58px;
  margin: 0 0 16px;
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.4;
}

.services-showcase .service-card h3 a {
  color: #20272b;
  transition: color 0.3s ease;
}

.services-showcase .service-card h3 a:hover {
  color: #000000;
}

.services-showcase .service-card p {
  margin: 0 0 24px;
  color: #667078;
  font-size: 0.91rem;
  line-height: 1.72;
}

/* Link */
.services-showcase .service-card-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  padding-top: 17px;
  color: #293238;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid rgba(15, 31, 43, 0.12);
  margin-top: auto;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.services-showcase .service-card-link i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.services-showcase .service-card-link:hover {
  gap: 15px;
  color: #000000;
}

.services-showcase .service-card-link:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1199px) {
  .services-showcase .service-card-image {
    height: 245px;
  }

  .services-showcase .service-card-content {
    padding: 23px 3px 0;
  }
}

@media (max-width: 991px) {
  .services-showcase {
    padding: 90px 0;
  }

  .services-showcase .service-card h3 {
    min-height: auto;
  }
}

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

  .services-showcase .service-card-image {
    height: 230px;
  }

  .services-showcase .service-card-content {
    padding: 23px 2px 0;
  }

  .services-showcase .service-card-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .services-showcase .service-card:hover {
    transform: none;
  }
}

@media (max-width: 575px) {
  .services-showcase .service-card-image {
    height: 215px;
  }

  .services-showcase .service-card h3 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Service Detail
--------------------------------------------------------------*/
.service-detail {
  padding: 110px 0;
  overflow: hidden;
  background-color: #ffffff;
}

.service-detail .service-detail-item {
  position: relative;
}

.service-detail .service-detail-image {
  position: relative;
  height: 100%;
  min-height: 560px;
  max-height: 680px;
  overflow: hidden;
  background-color: #f2f4f5;
}

.service-detail .service-detail-image::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.service-detail .service-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-detail .service-detail-item:hover .service-detail-image img {
  transform: scale(1.025);
}

.service-detail .service-detail-image-number {
  position: absolute;
  left: 28px;
  bottom: 25px;
  z-index: 3;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.service-detail .service-detail-content {
  position: relative;
  height: 100%;
  min-height: 560px;
  padding: 5px 0 0 55px;
  border-left: 0;
}

.service-detail-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: #15273a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-detail-label span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #15273a;
}

.service-detail .service-detail-content h2 {
  max-width: 570px;
  margin: 0 0 28px;
  color: #202124;
  font-size: clamp(2.5rem, 3.8vw, 3.9rem);
  font-weight: 300;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.service-detail .service-detail-content h2 strong {
  display: block;
  color: #202124;
  font-weight: 600;
}

.service-detail .service-detail-lead {
  max-width: 560px;
  margin-bottom: 13px;
  color: #59616a;
  font-size: 0.98rem;
  line-height: 1.8;
}

.service-detail .service-detail-content > p:not(.service-detail-lead) {
  max-width: 560px;
  margin-bottom: 28px;
  color: #9a9fa5;
  font-size: 0.9rem;
  line-height: 1.8;
}

.service-detail .service-detail-list {
  border-top: 1px solid #dfe2e4;
}

.service-detail .service-detail-list-item {
  position: relative;
  display: grid;
  grid-template-columns: 7px 1fr 20px;
  gap: 14px;
  align-items: center;
  min-height: 73px;
  padding: 13px 0;
  border-bottom: 1px solid #dfe2e4;
  transition: padding 0.3s ease;
}

.service-detail .service-detail-list-item:hover {
  padding-left: 8px;
}

.service-detail .item-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #202124;
}

.service-detail .service-detail-list-item h3 {
  margin: 0 0 4px;
  color: #4f565d;
  font-size: 0.87rem;
  font-weight: 500;
}

.service-detail .service-detail-list-item p {
  margin: 0;
  color: #9ca2a8;
  font-size: 0.75rem;
  line-height: 1.5;
}

.service-detail .service-detail-list-item i {
  justify-self: end;
  color: #1f2e3b;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.service-detail .service-detail-list-item:hover i {
  transform: translate(3px, -3px);
}

/*--------------------------------------------------------------
# Service Stats
--------------------------------------------------------------*/
.service-stats {
  padding: 72px 0 82px;
  background: #ffffff;
}

.service-stats-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  color: #70797e;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-stats-caption span:last-child {
  color: #9aa2a7;
  font-weight: 500;
}

.service-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: transparent;
  border-top: 1px solid #30373b;
  border-bottom: 1px solid #d9dee1;
}

.service-stat-item {
  position: relative;
  min-height: 210px;
  padding: 56px 30px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.service-stat-item + .service-stat-item {
  border-left: 1px solid #dfe3e5;
}

.service-stat-item::before {
  content: attr(data-stat);
  position: absolute;
  top: 24px;
  left: 30px;
  color: #9ba3a8;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.service-stat-item::after {
  content: "";
  position: absolute;
  right: auto;
  bottom: 28px;
  left: 30px;
  width: 22px;
  height: 1px;
  background: #9aa2a7;
}

.service-stat-number {
  display: flex;
  align-items: flex-start;
  color: #20272b;
  font-family: var(--heading-font);
  font-size: clamp(3rem, 4vw, 4.5rem);
  font-weight: 450;
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}

.service-stat-number small {
  margin: 2px 0 0 4px;
  color: #737d82;
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0;
}

.service-stat-item p {
  margin: 17px 0 0 38px;
  color: #59636a;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/*--------------------------------------------------------------
# Service Inline CTA
--------------------------------------------------------------*/
.service-inline-cta {
  padding: 74px 0;
  overflow: hidden;
  background: #f7f8f8;
  border-top: 1px solid #e0e4e6;
  border-bottom: 1px solid #e0e4e6;
}

.service-inline-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: end;
  padding: 46px 0 42px;
  border-top: 1px solid #919b9f;
  border-bottom: 1px solid #d5dade;
}

.service-inline-cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
  color: #687278;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-inline-cta-eyebrow::before {
  content: "";
  width: 31px;
  height: 1px;
  flex: 0 0 31px;
  background: #7e898e;
}

.service-inline-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #20272b;
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 2.7vw, 2.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-inline-cta h2 > span,
.service-inline-cta h2 strong {
  display: block;
  white-space: nowrap;
}

.service-inline-cta h2 strong {
  font-weight: 600;
}

.service-inline-cta-action {
  padding: 2px 0 3px 34px;
  border-left: 1px solid #d2d7da;
}

.service-inline-cta-action p {
  margin: 0 0 25px;
  color: #626d73;
  font-size: 0.91rem;
  line-height: 1.75;
}

.service-inline-cta-action a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 250px;
  padding: 15px 18px;
  color: #20272b;
  border: 1px solid #929ca1;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.service-inline-cta-action a i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.service-inline-cta-action a:hover {
  color: #ffffff;
  background: #20272b;
  border-color: #20272b;
}

.service-inline-cta-action a:hover i {
  transform: translate(3px, -3px);
}


/*--------------------------------------------------------------
# Service Process
--------------------------------------------------------------*/
.service-process {
  padding: 110px 0;
  overflow: hidden;
  background-color: #ffffff;
}

.service-process .service-process-content {
  position: relative;
  width: 100%;
  height: 560px;
  min-height: 560px;
  padding: 12px 55px 12px 0;
  border-right: 1px solid #c9cdd0;
}

.service-process .light-label {
  margin-bottom: 25px;
  color: #4d5961;
}

.service-process .light-label span {
  background-color: #4d5961;
}

.service-process .service-process-content h2 {
  max-width: 580px;
  margin: 0 0 28px;
  color: #202124;
  font-size: clamp(2.5rem, 3.8vw, 3.9rem);
  font-weight: 300;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.service-process .service-process-content h2 strong {
  display: block;
  color: #202124;
  font-weight: 600;
}

.service-process .service-process-lead {
  max-width: 540px;
  margin-bottom: 28px;
  color: #59616a;
  font-size: 0.98rem;
  line-height: 1.8;
}

.service-process .service-process-steps {
  max-width: 580px;
  border-top: 1px solid #d9dee1;
}

.service-process .service-process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 19px 0;
  border-bottom: 1px solid #d9dee1;
}

.service-process .step-number {
  padding-top: 3px;
  color: #9aa2a7;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.service-process .step-content h3 {
  margin: 0 0 4px;
  color: #2b3135;
  font-size: 1rem;
  font-weight: 500;
}

.service-process .step-content p {
  max-width: 430px;
  margin: 0;
  color: #747d82;
  font-size: 0.76rem;
  line-height: 1.55;
}

.service-process .service-process-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-width: 190px;
  margin-top: 14px;
  padding: 12px 18px;
  border: 1px solid #aeb6ba;
  color: #263138;
  font-size: 0.76rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s ease;
}

.service-process .service-process-button i {
  transition: transform 0.3s ease;
}

.service-process .service-process-button:hover {
  color: #ffffff;
  background-color: #263138;
  border-color: #263138;
}

.service-process .service-process-button:hover i {
  transform: translate(3px, -3px);
}

.service-process .service-process-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  max-height: 680px;
  overflow: hidden;
  background-color: #e6e9ea;
}

.service-process .service-process-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 35%,
      rgba(18, 25, 29, 0.24) 100%
    );
}

.service-process .service-process-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-process .service-process-image:hover img {
  transform: scale(1.025);
}

.service-process .service-process-image-box {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  z-index: 2;
  padding: 25px 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background-color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.service-process .service-process-image-box span {
  display: block;
  margin-bottom: 8px;
  color: #737d82;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-process .service-process-image-box strong {
  display: block;
  max-width: 330px;
  color: #20272b;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.45;
}

/* Service detail layout repeated with the image on the right */
.service-detail-variant {
  background-color: transparent;
  border: 0;
}

.service-detail-variant .service-process-content {
  height: 100%;
  min-height: 560px;
  padding: 5px 55px 0 0;
  border-right: 1px solid #c9cdd0;
  border-left: 0;
}

.service-detail-variant .light-label {
  margin-bottom: 25px;
  color: #15273a;
}

.service-detail-variant .light-label span {
  background-color: #15273a;
}

.service-detail-variant .service-process-content h2 {
  max-width: 570px;
  margin: 0 0 28px;
  font-size: clamp(2.5rem, 3.8vw, 3.9rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.service-detail-variant .service-process-lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: #59616a;
  font-size: 0.98rem;
  line-height: 1.8;
}

.service-detail-variant .service-process-steps {
  max-width: none;
  border-top: 1px solid #dfe2e4;
}

.service-detail-variant .service-process-step {
  grid-template-columns: 7px 1fr 20px;
  gap: 14px;
  align-items: center;
  min-height: 73px;
  padding: 13px 0;
  border-bottom: 1px solid #dfe2e4;
}

.service-detail-variant .step-number {
  width: 4px;
  height: 4px;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  background-color: #202124;
  color: transparent;
  font-size: 0;
}

.service-detail-variant .step-content {
  position: relative;
  grid-column: 2 / 4;
  padding-right: 34px;
}

.service-detail-variant .step-content::after {
  content: "↗";
  position: absolute;
  top: 50%;
  right: 2px;
  color: #1f2e3b;
  font-size: 0.95rem;
  transform: translateY(-50%);
}

.service-detail-variant .step-content h3 {
  margin: 0 0 4px;
  color: #4f565d;
  font-size: 0.87rem;
  font-weight: 500;
}

.service-detail-variant .step-content p {
  max-width: none;
  color: #9ca2a8;
  font-size: 0.75rem;
  line-height: 1.5;
}

.service-detail-variant .service-process-button {
  display: none;
}

.service-detail-variant .service-process-image-box {
  display: none;
}

.service-detail-variant .service-process-image {
  height: 100%;
  min-height: 560px;
  max-height: 680px;
}

.service-detail-variant .service-process-image img {
  height: 100%;
  min-height: 560px;
}

.service-detail-variant .service-process-image::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
}

.service-detail-variant .service-process-image::before {
  content: "02";
  position: absolute;
  top: auto;
  right: auto;
  bottom: 25px;
  left: 28px;
  z-index: 3;
  color: #ffffff;
  background: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .service-detail .row > [class*="col-"],
  .service-process .row > [class*="col-"] {
    display: flex;
  }

  .service-detail-variant .service-process-image,
  .service-detail-variant .service-process-content {
    height: 680px;
    min-height: 680px;
    max-height: 680px;
  }

  .service-detail .service-detail-image {
    flex: 1 1 auto;
    height: auto;
    min-height: 680px;
    max-height: 780px;
  }

  .service-detail .service-detail-content {
    height: auto;
    min-height: 680px;
    max-height: none;
  }

  .service-detail .service-detail-content,
  .service-detail-variant .service-process-content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .service-detail .service-detail-list,
  .service-detail-variant .service-process-steps {
    width: 100%;
    margin-top: auto;
  }
}

@media (max-width: 1199px) {
  .service-detail .service-detail-content {
    padding-left: 40px;
  }

  .service-detail .service-detail-content h2 {
    font-size: 3.5rem;
  }

  .service-process .service-process-content {
    padding-right: 40px;
  }
}

@media (max-width: 991px) {
  .service-inline-cta {
    padding: 60px 0;
  }

  .service-inline-cta-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 38px 0;
  }

  .service-inline-cta-action {
    padding: 28px 0 0;
    border-top: 1px solid #d5dade;
    border-left: 0;
  }

  .service-detail,
  .service-process {
    padding: 80px 0;
  }

  .service-detail .service-detail-image,
  .service-detail .service-detail-image img {
    height: 450px;
    min-height: 450px;
  }

  .service-detail .service-detail-content {
    min-height: auto;
    padding: 55px 0 0;
    border-right: 0;
    border-left: 0;
  }

  .service-process .service-process-content {
    height: auto;
    min-height: auto;
    padding: 55px 0 0;
    border-left: 0;
    border-right: 0;
  }

  .service-process .service-process-image,
  .service-process .service-process-image img {
    height: 450px;
    min-height: 450px;
  }
}

@media (max-width: 767px) {
  .service-detail,
  .service-process {
    padding: 65px 0;
  }

  .service-detail .service-detail-image,
  .service-detail .service-detail-image img {
    height: 330px;
    min-height: 330px;
  }

  .service-detail .service-detail-content {
    padding-top: 42px;
  }

  .service-detail .service-detail-content h2 {
    margin-bottom: 22px;
    font-size: 2.65rem;
    line-height: 1.04;
  }

  .service-detail .service-detail-list-item {
    grid-template-columns: 6px 1fr 16px;
    gap: 11px;
    min-height: 68px;
  }

  .service-detail .service-detail-list-item p {
    display: none;
  }

  .service-process .service-process-content h2 {
    font-size: 2.55rem;
    line-height: 1.05;
  }

  .service-process .service-process-step {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .service-detail-variant .service-process-step {
    grid-template-columns: 7px 1fr 20px;
  }

  .service-detail-variant .step-content {
    grid-column: 2 / 4;
  }

  .service-detail-variant .step-content p {
    display: none;
  }

  .service-process .service-process-image,
  .service-process .service-process-image img {
    height: 330px;
    min-height: 330px;
  }

  .service-process .service-process-image-box {
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 20px;
  }

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

  .service-stats {
    padding: 62px 0 68px;
  }

  .service-stats-caption {
    gap: 16px;
    margin-bottom: 14px;
    font-size: 0.58rem;
  }

  .service-stat-item {
    min-height: 170px;
    padding: 50px 22px 28px;
  }

  .service-stat-item + .service-stat-item {
    border-left: 0;
  }

  .service-stat-item:nth-child(even) {
    border-left: 1px solid #dfe3e5;
  }

  .service-stat-item:nth-child(n + 3) {
    border-top: 1px solid #dfe3e5;
  }

  .service-stat-item::before {
    top: 24px;
    left: 22px;
  }

  .service-stat-item::after {
    bottom: 23px;
    left: 22px;
  }

  .service-stat-item p {
    margin-left: 34px;
  }
}

@media (max-width: 575px) {
  .service-inline-cta {
    padding: 46px 0;
  }

  .service-inline-cta-inner {
    gap: 28px;
    padding: 30px 0;
  }

  .service-inline-cta-eyebrow {
    margin-bottom: 17px;
    font-size: 0.61rem;
  }

  .service-inline-cta h2 {
    font-size: clamp(1.35rem, 5.2vw, 1.65rem);
  }

  .service-inline-cta-action {
    padding-top: 24px;
  }

  .service-inline-cta-action a {
    width: 100%;
    min-width: 0;
  }

  .service-detail .service-detail-image,
  .service-detail .service-detail-image img {
    height: 295px;
    min-height: 295px;
  }

  .service-detail .service-detail-content h2,
  .service-process .service-process-content h2 {
    font-size: 2.25rem;
  }

  .service-detail-label {
    margin-bottom: 20px;
    font-size: 0.62rem;
  }

  .service-process .service-process-image,
  .service-process .service-process-image img {
    height: 295px;
    min-height: 295px;
  }

  .service-stats-grid {
    grid-template-columns: 1fr;
  }

  .service-stats {
    padding: 52px 0 58px;
  }

  .service-stats-caption span:last-child {
    display: none;
  }

  .service-stat-item {
    min-height: 155px;
  }

  .service-stat-item:nth-child(even) {
    border-left: 0;
  }

  .service-stat-item + .service-stat-item {
    border-top: 1px solid #dfe3e5;
  }
}

@media (max-width: 360px) {
  .service-inline-cta h2 {
    font-size: 1.15rem;
  }
}

/*--------------------------------------------------------------
# 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;
}

/* Yıldız Denizcilik contact page refinement */
.contact-linear {
  background: #ffffff;
}

.contact-linear .contact-linear-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: end;
  max-width: 1120px;
  margin: 0 auto 58px;
  padding: 0 0 42px;
  border-bottom: 1px solid #d7dcdf;
}

.contact-linear .contact-linear-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  color: #69747a;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-linear .contact-linear-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #7d888d;
}

.contact-linear .contact-linear-intro h2 {
  max-width: 680px;
  margin: 0;
  color: #20272b;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.contact-linear .contact-linear-intro h2 strong {
  display: block;
  font-weight: 600;
}

.contact-linear .contact-linear-intro > p {
  margin: 0;
  padding-left: 30px;
  color: #626d73;
  border-left: 1px solid #d7dcdf;
  font-size: 0.92rem;
  line-height: 1.8;
}

.contact-linear .contact-linear-card {
  position: relative;
  min-height: 178px;
  padding: 28px 26px;
  overflow: hidden;
  border: 0;
  border-top: 1px solid #9aa3a7;
  border-radius: 0;
  background: #f7f8f8;
}

.contact-linear .contact-linear-card::after {
  content: attr(data-contact);
  position: absolute;
  top: 20px;
  right: 22px;
  color: #a0a8ac;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.contact-linear .contact-linear-card:hover {
  background: #f1f3f3;
}

.contact-linear .contact-linear-card-content p {
  min-height: 44px;
}

.contact-linear .contact-linear-form-wrapper {
  padding: 44px 48px 48px;
  border-top: 1px solid #30383c;
  background: #f7f8f8;
}

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

.contact-linear .contact-linear-form-header > span {
  display: block;
  margin-bottom: 10px;
  color: #6d777c;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-linear .contact-linear-form-header h3 {
  margin: 0 0 12px;
  color: #20272b;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.contact-linear .contact-linear-form-header p {
  max-width: 650px;
  margin: 0;
  color: #69747a;
  font-size: 0.84rem;
  line-height: 1.7;
}

.contact-linear .contact-linear-form-group input,
.contact-linear .contact-linear-form-group select {
  height: 76px;
}

.contact-linear .contact-linear-form-group textarea {
  min-height: 140px;
  padding-top: 32px;
}

.contact-linear .contact-linear-submit {
  min-height: 60px;
}

.contact-linear .contact-linear-cta {
  margin-top: 70px;
  padding: 44px 0;
  border-top: 1px solid #30383c;
  border-bottom: 1px solid #d7dcdf;
  background: transparent;
}

.contact-linear .contact-linear-cta h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact-linear .contact-linear-map {
  position: relative;
  height: 480px;
  margin-top: 70px;
  overflow: hidden;
  border-top: 1px solid #30383c;
  border-radius: 0;
}

.contact-linear .contact-linear-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/*--------------------------------------------------------------
# Contact Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .contact-linear .contact-linear-layout {
    gap: 46px;
  }

  .contact-linear .contact-linear-form-wrapper {
    padding: 38px 34px 42px;
  }
}

@media (max-width: 991px) {
  .contact-linear .contact-linear-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-linear .contact-linear-intro > p {
    padding: 24px 0 0;
    border-top: 1px solid #d7dcdf;
    border-left: 0;
  }

  .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 .contact-linear-intro {
    margin-bottom: 38px;
    padding-bottom: 32px;
  }

  .contact-linear .contact-linear-intro h2 {
    font-size: 2.35rem;
  }

  .contact-linear .contact-linear-form-wrapper {
    padding: 32px 24px 34px;
  }

  .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: 32px 24px 34px;
  }

  .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;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 96px 0 108px;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  border-top: 1px solid #30383c;
  border-bottom: 1px solid #d5dade;
}

.contact-info {
  padding: 52px 64px 54px 0;
  border-right: 1px solid #d5dade;
}

.contact-kicker,
.contact-form-heading > span {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: #737d82;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #8b959a;
}

.contact-info h2 {
  margin: 0 0 22px;
  color: #20272b;
  font-size: clamp(2.35rem, 3.5vw, 3.65rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.048em;
}

.contact-info h2 strong {
  font-weight: 600;
}

.contact-lead {
  max-width: 440px;
  margin: 0 0 38px;
  color: #69747a;
  font-size: 0.86rem;
  line-height: 1.75;
}

.contact-cards {
  border-top: 1px solid #d5dade;
}

.contact-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #e0e4e6;
}

.contact-card > span {
  color: #858f94;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-card address,
.contact-card > a,
.contact-phones a {
  color: #20272b;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.65;
}

.contact-card address {
  margin: 0;
  font-style: normal;
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-form-panel {
  padding: 52px 0 54px 64px;
}

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

.contact-form-heading h3 {
  margin: 0;
  color: #20272b;
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.contact-fields label,
.contact-select {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.contact-fields label > span,
.contact-select > span {
  margin-top: 17px;
  margin-bottom: -20px;
  color: #818b90;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  pointer-events: none;
}

.contact-fields input,
.contact-fields select,
.contact-fields textarea {
  width: 100%;
  color: #20272b;
  border: 0;
  border-bottom: 1px solid #cfd5d8;
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 0.86rem;
  transition: border-color 0.25s ease;
}

.contact-fields input,
.contact-fields select {
  height: 82px;
  padding-top: 20px;
}

.contact-select {
  position: relative;
}

.contact-select > select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.contact-select-trigger {
  width: 100%;
  height: 82px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 0 2px 15px 0;
  color: #7c878c;
  border: 0;
  border-bottom: 1px solid #cfd5d8;
  background: transparent;
  font-size: 0.86rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.contact-select-trigger i {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-bottom: 4px;
  border-right: 1px solid #59646a;
  border-bottom: 1px solid #59646a;
  transform: rotate(45deg);
  transition: transform 0.25s ease, margin 0.25s ease;
}

.contact-select.is-open .contact-select-trigger,
.contact-select-trigger:hover,
.contact-select-trigger:focus-visible {
  color: #20272b;
  border-color: #30383c;
  outline: 0;
}

.contact-select.is-invalid .contact-select-trigger {
  border-color: #a74b43;
}

.contact-select.is-selected .contact-select-trigger {
  color: #20272b;
}

.contact-select.is-open .contact-select-trigger i {
  margin-bottom: 0;
  transform: rotate(225deg);
}

.contact-select-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  border: 1px solid transparent;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(28, 35, 39, 0.1);
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.contact-select.is-open .contact-select-menu {
  max-height: 380px;
  overflow: hidden;
  visibility: visible;
  border-color: #d5dade;
  opacity: 1;
  transform: translateY(0);
}

.contact-select-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 14px;
  color: #465157;
  border: 0;
  border-bottom: 1px solid #edf0f1;
  background: #ffffff;
  font-size: 0.72rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
}

.contact-select-option:last-child {
  border-bottom: 0;
}

.contact-select-option:hover,
.contact-select-option:focus-visible,
.contact-select-option.is-active {
  padding-left: 19px;
  color: #20272b;
  background: #f3f5f5;
  outline: 0;
}

.contact-select-option.is-active::after {
  content: "";
  width: 18px;
  height: 1px;
  background: #59646a;
}

.contact-fields textarea {
  min-height: 125px;
  padding: 45px 0 12px;
  resize: vertical;
}

.contact-fields input:focus,
.contact-fields select:focus,
.contact-fields textarea:focus {
  border-color: #30383c;
}

.contact-message {
  grid-column: 1 / -1;
}

.contact-form > button {
  min-width: 220px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 28px 0 0 auto;
  padding: 0 18px;
  color: #ffffff;
  border: 1px solid #20272b;
  background: #20272b;
  font-size: 0.74rem;
  font-weight: 600;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.contact-form > button:hover {
  color: #20272b;
  background: #ffffff;
}

.contact-map {
  margin-top: 70px;
  border-top: 1px solid #30383c;
  border-bottom: 1px solid #d5dade;
}

.contact-map-head {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 14px 0;
}

.contact-map-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-map-head span {
  color: #858f94;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-map-head strong {
  color: #20272b;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-map-head > a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #20272b;
  border-bottom: 1px solid #90999e;
  padding-bottom: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.contact-map iframe {
  width: 100%;
  height: 440px;
  display: block;
  border: 0;
  filter: grayscale(0.9) contrast(0.92) brightness(1.03);
}

@media (max-width: 991px) {
  .contact {
    padding: 78px 0 88px;
  }

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

  .contact-info {
    padding: 44px 0 48px;
    border-right: 0;
    border-bottom: 1px solid #d5dade;
  }

  .contact-form-panel {
    padding: 44px 0 48px;
  }
}

@media (max-width: 575px) {
  .contact-info h2 {
    font-size: 2.35rem;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .contact-fields {
    grid-template-columns: 1fr;
  }

  .contact-message {
    grid-column: auto;
  }

  .contact-form > button {
    width: 100%;
  }

  .contact-map {
    margin-top: 52px;
  }

  .contact-map-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .contact-map iframe {
    height: 360px;
  }
}

/*--------------------------------------------------------------
# Contact Editorial Layout
--------------------------------------------------------------*/
.contact-editorial {
  padding: 112px 0 100px;
  background: #ffffff;
}

.contact-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(65px, 9vw, 135px);
  align-items: start;
}

.contact-editorial-title > span {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 23px;
  color: #69747a;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-editorial-title > span::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #7e898e;
}

.contact-editorial-title h2 {
  margin: 0 0 28px;
  color: #20272b;
  font-size: clamp(2.8rem, 4.6vw, 4.7rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.contact-editorial-title h2 strong {
  font-weight: 600;
}

.contact-editorial-title p {
  max-width: 460px;
  margin: 0;
  color: #687278;
  font-size: 0.92rem;
  line-height: 1.8;
}

.contact-editorial-details {
  border-top: 1px solid #30383c;
}

.contact-editorial-block {
  position: relative;
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  gap: 25px;
  padding: 34px 0 38px;
  border-bottom: 1px solid #d5dade;
}

.contact-editorial-number,
.contact-editorial-mail > span {
  color: #8b9499;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.contact-editorial-block address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  color: #20272b;
  font-style: normal;
}

.contact-editorial-block address strong {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.32;
}

.contact-editorial-block > a {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  color: #677278;
  border-bottom: 1px solid #98a1a5;
  padding-bottom: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.contact-editorial-phones {
  display: flex;
  flex-direction: column;
}

.contact-editorial-phones a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 12px 0;
  color: #20272b;
  border-bottom: 1px solid #e2e5e7;
  font-family: var(--heading-font);
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-editorial-phones a:first-child {
  padding-top: 0;
}

.contact-editorial-phones a:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-editorial-phones i,
.contact-editorial-block > a i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.contact-editorial-phones a:hover i,
.contact-editorial-block > a:hover i {
  transform: translate(3px, -3px);
}

.contact-editorial-mail {
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  gap: 25px;
  padding-top: 28px;
}

.contact-editorial-mail a {
  color: #20272b;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-map-stage {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: #e9ecec;
}

.contact-map-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.88) brightness(1.04);
  transition: filter 0.45s ease;
}

.contact-map-stage:hover iframe {
  filter: grayscale(0.15) contrast(0.96) brightness(1);
}

.contact-map-stage-caption {
  position: absolute;
  right: 0;
  bottom: 72px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  padding-bottom: 22px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(48, 56, 60, 0.2);
  backdrop-filter: blur(12px);
}

.contact-map-stage-caption > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-map-stage-caption span {
  color: #879095;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.contact-map-stage-caption strong {
  color: #20272b;
  font-size: 1rem;
  font-weight: 600;
}

.contact-map-stage-caption > a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 4px;
  color: #20272b;
  border-bottom: 1px solid #899398;
  font-size: 0.72rem;
  font-weight: 600;
}

.contact-request-section {
  padding: 0 0 110px;
  background: #f3f5f5;
}

.contact-request-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 7vw, 92px);
  margin-top: -72px;
  padding: 64px 70px 68px;
  border-top: 1px solid #30383c;
  background: #ffffff;
}

.contact-request-heading > span {
  display: block;
  margin-bottom: 16px;
  color: #747e83;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-request-heading h2 {
  margin: 0 0 18px;
  color: #20272b;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.contact-request-heading p {
  margin: 0;
  color: #687278;
  font-size: 0.84rem;
  line-height: 1.7;
}

.contact-request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
}

.contact-request-grid label {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.contact-request-grid label > span {
  margin-bottom: -22px;
  padding-top: 18px;
  color: #7b858a;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.contact-request-grid input,
.contact-request-grid select,
.contact-request-grid textarea {
  width: 100%;
  color: #20272b;
  border: 0;
  border-bottom: 1px solid #cfd5d8;
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 0.86rem;
}

.contact-request-grid input,
.contact-request-grid select {
  height: 90px;
  padding-top: 22px;
}

.contact-request-grid textarea {
  min-height: 130px;
  padding: 48px 0 14px;
  resize: vertical;
}

.contact-request-message {
  grid-column: 1 / -1;
}

.contact-request-form > button {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 0 20px;
  color: #ffffff;
  border: 1px solid #20272b;
  background: #20272b;
  font-size: 0.76rem;
  font-weight: 600;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.contact-request-form > button:hover {
  color: #20272b;
  background: #ffffff;
}

@media (max-width: 991px) {
  .contact-editorial {
    padding: 84px 0 78px;
  }

  .contact-editorial-grid,
  .contact-request-shell {
    grid-template-columns: 1fr;
  }

  .contact-editorial-grid {
    gap: 52px;
  }

  .contact-request-shell {
    gap: 40px;
    padding: 52px 44px 56px;
  }
}

@media (max-width: 575px) {
  .contact-editorial-title h2 {
    font-size: 2.55rem;
  }

  .contact-editorial-block,
  .contact-editorial-mail {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-editorial-block > a {
    grid-column: 1;
  }

  .contact-map-stage {
    height: 450px;
  }

  .contact-map-stage-caption {
    bottom: 46px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .contact-request-section {
    padding-bottom: 72px;
  }

  .contact-request-shell {
    margin-top: -46px;
    padding: 40px 22px 44px;
  }

  .contact-request-grid {
    grid-template-columns: 1fr;
  }

  .contact-request-message {
    grid-column: auto;
  }
}

/* Symmetric contact composition */
.contact-editorial {
  padding: 96px 0 88px;
}

.contact-editorial-grid {
  display: block;
}

.contact-editorial-title {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center;
}

.contact-editorial-title > span {
  justify-content: center;
}

.contact-editorial-title p {
  max-width: 580px;
  margin-right: auto;
  margin-left: auto;
}

.contact-editorial-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #30383c;
  border-bottom: 1px solid #d5dade;
}

.contact-editorial-block,
.contact-editorial-mail {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 34px 32px 36px;
  border-bottom: 0;
}

.contact-editorial-block + .contact-editorial-block,
.contact-editorial-mail {
  border-left: 1px solid #d5dade;
}

.contact-editorial-block address {
  margin-top: auto;
}

.contact-editorial-block > a {
  grid-column: auto;
  margin-top: auto;
}

.contact-editorial-phones {
  justify-content: flex-end;
  flex: 1;
}

.contact-editorial-phones a {
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.contact-editorial-mail {
  justify-content: space-between;
}

.contact-editorial-mail a {
  overflow-wrap: anywhere;
  font-family: var(--heading-font);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
}

.contact-map-stage {
  height: 520px;
  border-top: 1px solid #30383c;
  border-bottom: 1px solid #d5dade;
}

.contact-map-stage-caption {
  bottom: 0;
}

.contact-request-section {
  padding: 88px 0 108px;
}

.contact-request-shell {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px 64px 64px;
  border-bottom: 1px solid #d5dade;
}

.contact-request-heading {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.contact-request-heading p {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

.contact-request-form {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .contact-editorial-details {
    grid-template-columns: 1fr;
  }

  .contact-editorial-block,
  .contact-editorial-mail {
    min-height: 220px;
  }

  .contact-editorial-block + .contact-editorial-block,
  .contact-editorial-mail {
    border-top: 1px solid #d5dade;
    border-left: 0;
  }

  .contact-request-shell {
    padding: 50px 42px 56px;
  }
}

@media (max-width: 575px) {
  .contact-editorial {
    padding: 72px 0 64px;
  }

  .contact-editorial-title {
    margin-bottom: 44px;
  }

  .contact-editorial-title h2 {
    font-size: 2.35rem;
  }

  .contact-editorial-block,
  .contact-editorial-mail {
    min-height: 0;
    padding: 28px 22px 30px;
  }

  .contact-map-stage {
    height: 430px;
  }

  .contact-request-section {
    padding: 62px 0 74px;
  }

  .contact-request-shell {
    padding: 40px 22px 44px;
  }

  .contact-request-heading {
    margin-bottom: 28px;
  }
}

/*--------------------------------------------------------------
# Contact Hub
--------------------------------------------------------------*/
.yd-contact-hub {
  padding: 108px 0 84px;
  background: #ffffff;
}

.yd-contact-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: end;
  padding-bottom: 54px;
  border-bottom: 1px solid #cfd5d8;
}

.yd-contact-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: #69747a;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.yd-contact-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #7e898e;
}

.yd-contact-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #20272b;
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.yd-contact-heading h2 strong {
  display: block;
  font-weight: 600;
}

.yd-contact-heading > p {
  margin: 0;
  padding-left: 30px;
  color: #657076;
  border-left: 1px solid #d5dade;
  font-size: 0.93rem;
  line-height: 1.8;
}

.yd-contact-channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 50px;
  border-top: 1px solid #30383c;
  border-bottom: 1px solid #d5dade;
}

.yd-contact-channel {
  position: relative;
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #20272b;
  transition: background-color 0.3s ease;
}

.yd-contact-channel + .yd-contact-channel {
  border-left: 1px solid #d5dade;
}

.yd-contact-channel:hover {
  color: #20272b;
  background: #f3f5f5;
}

.yd-contact-channel-index {
  position: absolute;
  top: 24px;
  left: 30px;
  color: #9aa3a8;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.yd-contact-channel-label {
  margin-bottom: 10px;
  color: #6c777c;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.yd-contact-channel strong {
  max-width: calc(100% - 35px);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
}

.yd-contact-channel i {
  position: absolute;
  right: 30px;
  bottom: 31px;
  color: #657076;
  transition: transform 0.3s ease;
}

.yd-contact-channel:hover i {
  transform: translate(3px, -3px);
}

.yd-contact-workspace {
  padding: 92px 0 110px;
  background: #f3f5f5;
}

.yd-contact-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: stretch;
  gap: 24px;
}

.yd-contact-form-panel,
.yd-contact-map-panel {
  border-top: 1px solid #30383c;
  background: #ffffff;
}

.yd-contact-form-panel {
  padding: 50px 52px 54px;
}

.yd-contact-panel-heading {
  margin-bottom: 34px;
}

.yd-contact-panel-heading > span,
.yd-contact-location > div > span {
  display: block;
  margin-bottom: 11px;
  color: #707a80;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.yd-contact-panel-heading h2 {
  margin: 0 0 13px;
  color: #20272b;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.yd-contact-panel-heading p {
  max-width: 570px;
  margin: 0;
  color: #687278;
  font-size: 0.86rem;
  line-height: 1.7;
}

.yd-contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
}

.yd-contact-field {
  position: relative;
}

.yd-contact-field-wide {
  grid-column: 1 / -1;
}

.yd-contact-field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.yd-contact-field input,
.yd-contact-field select,
.yd-contact-field textarea {
  width: 100%;
  color: #20272b;
  border: 0;
  border-bottom: 1px solid #cfd5d8;
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 0.88rem;
  transition: border-color 0.25s ease;
}

.yd-contact-field input,
.yd-contact-field select {
  height: 76px;
}

.yd-contact-field textarea {
  min-height: 145px;
  padding: 30px 0 14px;
  resize: vertical;
}

.yd-contact-field input:focus,
.yd-contact-field select:focus,
.yd-contact-field textarea:focus {
  border-color: #30383c;
}

.yd-contact-field input::placeholder,
.yd-contact-field textarea::placeholder,
.yd-contact-field select:invalid {
  color: #879096;
}

.yd-contact-submit {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 0 21px;
  color: #ffffff;
  border: 1px solid #20272b;
  background: #20272b;
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.yd-contact-submit:hover {
  color: #20272b;
  background: transparent;
}

.yd-contact-submit i {
  transition: transform 0.3s ease;
}

.yd-contact-submit:hover i {
  transform: translate(3px, -3px);
}

.yd-contact-map-panel {
  display: grid;
  grid-template-rows: minmax(410px, 1fr) auto;
}

.yd-contact-map-frame {
  min-height: 410px;
  overflow: hidden;
}

.yd-contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 410px;
  border: 0;
  filter: grayscale(1) contrast(0.9) brightness(1.04);
  transition: filter 0.4s ease;
}

.yd-contact-map-panel:hover iframe {
  filter: grayscale(0.2) contrast(0.96) brightness(1);
}

.yd-contact-location {
  padding: 34px 36px 38px;
  border-top: 1px solid #d5dade;
}

.yd-contact-location h3 {
  max-width: 480px;
  margin: 0 0 18px;
  color: #20272b;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.yd-contact-location > p {
  margin: 0 0 23px;
  color: #687278;
  font-size: 0.82rem;
  line-height: 1.65;
}

.yd-contact-location > a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #20272b;
  font-size: 0.74rem;
  font-weight: 600;
  border-bottom: 1px solid #8e989d;
  padding-bottom: 5px;
}

.yd-contact-location > a:hover {
  color: #20272b;
}

@media (max-width: 991px) {
  .yd-contact-hub {
    padding: 82px 0 68px;
  }

  .yd-contact-heading,
  .yd-contact-workspace-grid {
    grid-template-columns: 1fr;
  }

  .yd-contact-heading {
    gap: 30px;
  }

  .yd-contact-heading > p {
    padding: 24px 0 0;
    border-top: 1px solid #d5dade;
    border-left: 0;
  }

  .yd-contact-workspace-grid {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .yd-contact-heading h2 {
    font-size: 2.65rem;
  }

  .yd-contact-channels {
    grid-template-columns: 1fr;
  }

  .yd-contact-channel {
    min-height: 145px;
  }

  .yd-contact-channel + .yd-contact-channel {
    border-top: 1px solid #d5dade;
    border-left: 0;
  }

  .yd-contact-workspace {
    padding: 66px 0 78px;
  }

  .yd-contact-form-panel {
    padding: 36px 24px 40px;
  }

  .yd-contact-field-grid {
    grid-template-columns: 1fr;
  }

  .yd-contact-field-wide {
    grid-column: auto;
  }

  .yd-contact-map-panel {
    grid-template-rows: 340px auto;
  }

  .yd-contact-map-frame,
  .yd-contact-map-frame iframe {
    min-height: 340px;
  }

  .yd-contact-location {
    padding: 30px 24px 34px;
  }
}

/*--------------------------------------------------------------
# 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;
  }
}


/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.footer {
  position: relative;
  padding: 0;
  color: #ffffff;
  background-color: #050505;
  font-size: 13px;
}

.footer-cta {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.footer-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/yildiz-denizcilik-cta-2.jpg") center 42% / cover no-repeat;
  filter: grayscale(0.35);
  transform: scale(1.015);
}

.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.72);
}

.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(5, 5, 5, 0.18) 66%,
    rgba(5, 5, 5, 0.72) 88%,
    #050505 100%
  );
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  align-items: center;
  gap: clamp(70px, 10vw, 145px);
  padding-top: 84px;
  padding-bottom: 84px;
}

.footer-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 1.5px;
}

.footer-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.54);
}

.footer-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  font-weight: 350;
  line-height: 1.02;
  letter-spacing: -3px;
}

.footer-cta h2 strong {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 350;
  font-style: italic;
}

.footer-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-cta-button {
  min-width: 190px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 0;
  padding: 0 18px;
  color: #252728;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.footer-cta-button i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.footer-cta-button:hover {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.footer-cta-button:hover i {
  transform: translateX(4px);
}

.footer-cta-action p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  font-weight: 350;
  line-height: 1.7;
}

.footer-main {
  background-color: #050505;
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) 0.72fr 0.72fr minmax(240px, 0.95fr);
  padding-top: 58px;
  padding-bottom: 52px;
}

.footer-brand {
  padding-right: clamp(38px, 5vw, 72px);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 25px;
}

.footer-logo img {
  display: block;
  width: 205px;
  height: auto;
}

.footer-brand > p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  line-height: 1.72;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-socials a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-column,
.footer-contact {
  padding-left: clamp(25px, 3vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-column h3,
.footer-contact h3 {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  text-decoration: none;
}

.footer-contact .footer-phone {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.footer-contact small {
  margin-bottom: 23px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
}

.footer-contact > p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.footer-phone-list,
.footer-email-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-phone-list {
  margin-bottom: 20px;
}

.footer-email-list {
  margin-bottom: 19px;
}

.footer-contact .footer-phone {
  margin-bottom: 3px;
}

.footer-email-list small {
  margin: 2px 0 0;
}

.footer-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  font-style: normal;
  line-height: 1.65;
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.59rem;
}

.footer-bottom > div {
  display: flex;
  gap: 4px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.59rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-credit > span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.59rem;
}

.footer-signature {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .footer-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
    row-gap: 48px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding: 35px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .scroll-top {
    display: none !important;
  }

  .call-button {
    display: flex !important;
  }

  .footer-cta {
    min-height: 0;
  }

  .footer-cta-inner {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .footer-cta h2 {
    font-size: 2.35rem;
    letter-spacing: -2px;
  }

  .footer-cta-button {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 46px;
    padding-bottom: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .footer-column {
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .footer-column + .footer-column {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-grid > :nth-child(3) {
    border-right: 0;
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom {
    min-height: 90px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .footer-cta h2 {
    font-size: 2.05rem;
  }

  .footer-cta-button {
    width: 100%;
  }

}

/*--------------------------------------------------------------
# Brand palette accents
--------------------------------------------------------------*/
::selection {
  color: #ffffff;
  background-color: var(--brand-primary);
}

.topbar-left i {
  color: var(--brand-primary-light);
}

.services-info .services-info-number {
  color: var(--brand-primary);
}

.section-title .subtitle::before,
.operations-port-card::before {
  background-color: var(--brand-primary);
}

.section-title-link:hover,
.services-info .services-info-item:hover .services-info-link,
.operations-port-card.active .port-card-number,
.operations-port-card:hover > i,
.operations-port-card.active > i {
  color: var(--brand-primary);
}

.section-title-link:hover,
.services-info .services-info-item:hover {
  border-color: var(--brand-primary);
}

.operations-map-hotspot:hover,
.operations-map-hotspot.active {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary-dark);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--brand-primary), transparent 80%);
}

.operations-port-card:hover,
.operations-port-card.active {
  border-color: color-mix(in srgb, var(--brand-primary), transparent 55%);
}

body.header-scrolled .header-cta {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

body.header-scrolled .header-cta:hover {
  color: var(--brand-primary);
  background-color: #ffffff;
}

.footer-eyebrow::before {
  background-color: rgba(255, 255, 255, 0.54);
}

.footer-column h3,
.footer-contact h3 {
  color: rgba(255, 255, 255, 0.55);
}

.footer-socials a:hover,
.footer-column a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

/*--------------------------------------------------------------
# Text reveal motion
--------------------------------------------------------------*/
.text-reveal {
  opacity: 0;
  filter: blur(2px);
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 1.3s ease,
    filter 1.22s ease,
    transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--text-reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.text-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .text-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
