@charset "UTF-8";

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

:root { 
  --brand-gold: #1e3a8f;
  --brand-gold-deep: #132c75;
  --brand-gold-soft: #e8edfb;
  --brand-ink: #132c75;
  --brand-charcoal: #1e3a8f;
  --brand-ivory: #f7f9ff;
  --brand-navy: var(--brand-ink);
  --brand-blue: var(--brand-gold-deep);

  --background-color: #ffffff;
  --default-color: #625f57;
  --heading-color: var(--brand-ink);
  --accent-color: var(--brand-charcoal);
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #8d887b;
  --nav-hover-color: var(--brand-charcoal);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #625f57;
  --nav-dropdown-hover-color: var(--brand-charcoal);
}

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

.dark-background {
  --background-color: #f4f4f5;
  --default-color: #e3e3e3;
  --heading-color: #ffffff;
  --accent-color: var(--brand-gold);
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

  width: 100%;
  min-height: var(--header-height);
  padding: 0;
  color: #ffffff;
  background-color: transparent;
  z-index: 997;

  transform: translateY(0);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.header > .container-fluid {
  width: 100%;
  min-height: var(--header-height);
  padding-left: clamp(24px, 2.6vw, 48px);
  padding-right: clamp(24px, 2.2vw, 36px);
}

/* Header aşağı kaydırılırken gizlenir */
.header.header-hidden {
  transform: translateY(-110%);
}

/* Sayfanın üst kısmı dışında, header görünürken beyaz olur */
body.scrolled .header {
  color: #121212;
  background-color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Önceki ::before yapısını kapatır */
.scrolled .header::before {
  display: none;
}

/*--------------------------------------------------------------
# Header Logo
--------------------------------------------------------------*/
.header .logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
}

.header .logo img {
  display: block;
  width: 205px;
  height: auto;
  max-height: 46px;
  margin: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

body.scrolled .header .logo img {
  filter: none;
}

.header .logo h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(25px, 1.8vw, 30px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.5px;
  transition: color 0.3s ease;
}

body.scrolled .header .logo h1 {
  color: #111111;
}

/* Referanstaki sembolik logo ikonu */
.header .logo-icon {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 11px);
  grid-template-rows: repeat(2, 11px);
  gap: 3px;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  flex-shrink: 0;
}

.header .logo-icon span {
  display: block;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.header .logo-icon span:nth-child(1) {
  border-radius: 1px 8px 1px 8px;
}

.header .logo-icon span:nth-child(2) {
  border-radius: 8px 1px 8px 1px;
}

.header .logo-icon span:nth-child(3) {
  border-radius: 8px 1px 8px 1px;
}

.header .logo-icon span:nth-child(4) {
  border-radius: 1px 8px 1px 8px;
}

body.scrolled .header .logo-icon span {
  background-color: #111111;
}

/* Logo ve menü arasındaki dikey çizgi */
.header-divider {
  display: block;
  width: 1px;
  height: 34px;
  margin-left: 28px;
  margin-right: 29px;
  background-color: color-mix(in srgb, var(--brand-gold), transparent 76%);
  transition: background-color 0.3s ease;
}

body.scrolled .header-divider {
  background-color: color-mix(in srgb, var(--brand-gold-deep), transparent 82%);
}

/*--------------------------------------------------------------
# Header CTA
--------------------------------------------------------------*/
.header-cta {
  min-width: 166px;
  height: 42px;
  margin-left: auto;
  padding: 0 17px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  color: var(--brand-gold-deep);
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 450;
  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;
}

.header-cta i {
  color: currentColor;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.header-cta:hover {
  color: #ffffff;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.68);
  transform: none;
}

.header-cta:hover i {
  transform: translateX(4px);
}

body.scrolled .header-cta {
  color: #ffffff;
  background-color: var(--brand-gold-deep);
  border-color: var(--brand-gold-deep);
}

body.scrolled .header-cta:hover {
  color: var(--brand-gold-deep);
  background-color: transparent;
  border-color: var(--brand-gold-deep);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
    display: flex;
    align-items: center;
  }

  /* Referanstaki menüler arasındaki beyaz noktalar */
  .navmenu li:not(:last-child)::after {
    content: "";
    width: 4px;
    height: 4px;
    margin: 0 7px;
    flex-shrink: 0;
    background-color: color-mix(in srgb, var(--brand-gold), transparent 66%);
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }

  body.scrolled .navmenu li:not(:last-child)::after {
    background-color: color-mix(in srgb, var(--brand-gold-deep), transparent 70%);
  }

  .navmenu a,
  .navmenu a:focus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px 10px;

    color: rgba(255, 255, 255, 0.88);
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 450;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;

    letter-spacing: 0.005em;
    transition: color 0.3s ease, opacity 0.3s ease;
  }

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

  .navmenu ul:hover > li > a {
    opacity: 0.46;
  }

  .navmenu ul > li:hover > a,
  .navmenu a:focus-visible,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, #ffffff, var(--brand-gold) 8%);
    opacity: 1;
  }

  body.scrolled .navmenu li:hover > a,
  body.scrolled .navmenu .active,
  body.scrolled .navmenu .active:focus {
    color: color-mix(in srgb, #171717, var(--brand-gold-deep) 10%);
  }

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

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

  /* Dropdown desteği korunur */
  .navmenu .dropdown ul {
    position: absolute;
    top: 130%;
    left: 14px;
    z-index: 99;

    display: block;
    min-width: 242px;
    margin: 0;
    padding: 6px;

    visibility: hidden;
    opacity: 0;
    background: var(--nav-dropdown-background-color);
    border: 1px solid rgba(23, 21, 15, 0.1);
    border-top-color: color-mix(in srgb, var(--brand-gold), transparent 72%);
    border-radius: 4px;
    box-shadow: 0 18px 42px rgba(23, 21, 15, 0.09);

    transition:
      opacity 0.44s ease,
      top 0.44s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.44s ease;
  }

  .navmenu .dropdown ul li {
    display: block;
    min-width: 228px;
    border-bottom: 1px solid rgba(23, 21, 15, 0.07);
  }

  .navmenu .dropdown ul li:last-child {
    border-bottom: 0;
  }

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

  .navmenu .dropdown ul a {
    justify-content: flex-start;
    gap: 11px;
    padding: 12px 13px;
    color: var(--nav-dropdown-color);
    font-size: 13px;
    font-weight: 450;
    letter-spacing: 0.005em;
    text-transform: none;
    transition: color 0.34s ease, background-color 0.34s ease;
  }

  .navmenu .dropdown ul a::before {
    content: "";
    display: block;
    width: 6px;
    height: 1px;
    flex: 0 0 auto;
    background-color: color-mix(in srgb, var(--brand-gold-deep), transparent 74%);
    transition: width 0.36s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.34s ease;
  }

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

  .navmenu .dropdown ul li:hover > a::before,
  .navmenu .dropdown ul a:focus-visible::before {
    width: 14px;
    background-color: color-mix(in srgb, var(--brand-gold-deep), transparent 48%);
  }

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

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

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

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

/*--------------------------------------------------------------
# Navigation Menu - Tablet
--------------------------------------------------------------*/
@media (max-width: 1399px) and (min-width: 1200px) {
  .header-divider {
    margin-left: 20px;
    margin-right: 16px;
  }

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

  .navmenu li:not(:last-child)::after {
    margin-left: 2px;
    margin-right: 2px;
  }

  .header-cta {
    min-width: 158px;
    height: 40px;
    padding: 0 16px;
    font-size: 12.5px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu - Mobile
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .header {
    --header-height: 76px;
  }

  .header > .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-divider {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #ffffff;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
  }

  .mobile-nav-toggle span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 1.5px;
    background-color: currentColor;
    transform-origin: center;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-nav-toggle span:first-child {
    transform: translateY(-4px);
  }

  .mobile-nav-toggle span:last-child {
    transform: translateY(4px);
  }

  .mobile-nav-toggle.is-active span:first-child {
    transform: translateY(0) rotate(45deg);
  }

  .mobile-nav-toggle.is-active span:last-child {
    transform: translateY(0) rotate(-45deg);
  }

  .mobile-nav-toggle:hover,
  .mobile-nav-toggle:focus-visible {
    background-color: transparent;
    outline: none;
  }

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

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

  .navmenu ul {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    z-index: 9998;
    box-sizing: border-box;

    margin: 0;
    padding: 32px clamp(24px, 7vw, 56px);
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    list-style: none;
    background-color: #ffffff;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -100%, 0);
    transition:
      transform 0.55s cubic-bezier(0.76, 0, 0.24, 1),
      opacity 0.35s ease,
      visibility 0.55s;
  }

  .navmenu li {
    position: relative;
    opacity: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    transform: translateY(-8px);
    transition:
      opacity 0.24s ease,
      transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0s;
  }

  .navmenu li:not(.mobile-menu-cta)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1px;
    width: 4px;
    height: 4px;
    background-color: rgba(17, 17, 17, 0.42);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .navmenu li:hover::before,
  .navmenu li:has(> a.active)::before {
    background-color: #111111;
    transform: translateY(-50%) scale(1.35);
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 0 12px 20px;

    color: rgba(20, 20, 20, 0.76);
    font-family: var(--nav-font);
    font-size: clamp(18px, 4.35vw, 23px);
    font-weight: 420;
    line-height: 1.2;
    letter-spacing: -0.008em;
    text-decoration: none;
    white-space: nowrap;

    transition:
      color 0.3s ease,
      opacity 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;
    margin-left: 5px;

    color: #111111;
    font-size: 12px;
    line-height: 0;
    background-color: #f1f1f1;
    border-radius: 50%;

    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #000000;
    background-color: transparent;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    color: #ffffff;
    background-color: #111111;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: block;
    width: auto;
    height: auto;
    min-height: 0;
    max-height: 0;
    margin: 0 0 0 18px;
    padding: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-7px);
    z-index: auto;

    background-color: transparent;
    border: 0;
    border-left: 1px solid rgba(23, 21, 15, 0.11);
    border-radius: 0;
    box-shadow: none;
    transition:
      max-height 0.58s cubic-bezier(0.22, 1, 0.36, 1),
      margin 0.58s cubic-bezier(0.22, 1, 0.36, 1),
      padding 0.58s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.38s ease,
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.58s;
  }

  .navmenu .dropdown ul ul {
    background-color: transparent;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    max-height: 420px;
    margin: 7px 0 14px 18px;
    padding: 4px 0 7px 15px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      max-height 0.66s cubic-bezier(0.22, 1, 0.36, 1),
      margin 0.66s cubic-bezier(0.22, 1, 0.36, 1),
      padding 0.66s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.42s 0.08s ease,
      transform 0.56s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }

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

  body.mobile-nav-active .header {
    /* Fixed menu viewport'a göre ölçülsün; transformed parent yüksekliğiyle sınırlanmasın. */
    transform: none;
    color: #171717;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(17, 17, 17, 0.14);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    z-index: 10000;
    margin-right: 0;
    color: #171717;
  }

  .mobile-nav-active .navmenu {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 0;
    z-index: 9997;
    overflow: visible;
  }

  .mobile-nav-active .navmenu > ul {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

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

  .mobile-nav-active .header .logo,
  .mobile-nav-active .header .logo h1 {
    position: relative;
    z-index: 9999;
    color: #171717;
  }

  .mobile-nav-active .header .logo-icon span {
    background-color: #171717;
  }

  .mobile-menu-cta {
    margin-top: 22px;
    border-bottom: 0 !important;
  }

  .mobile-menu-cta a,
  .mobile-menu-cta a:focus {
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .mobile-menu-cta a i {
    width: auto;
    height: auto;
    margin: 0;
    color: inherit;
    font-size: 17px;
    background: transparent;
  }
}

/*--------------------------------------------------------------
# Header Mobile Adjustments
--------------------------------------------------------------*/
@media (max-width: 575px) {
  .header {
    --header-height: 70px;
  }

  .header .logo img {
    width: 165px;
    max-height: 36px;
  }

  .header > .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header .logo h1 {
    font-size: 25px;
  }

  .header .logo-icon {
    grid-template-columns: repeat(2, 9px);
    grid-template-rows: repeat(2, 9px);
    gap: 3px;
    width: 21px;
    height: 21px;
  }

  .navmenu ul {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navmenu ul,
  .navmenu li,
  .header,
  .header-cta,
  .mobile-nav-toggle {
    transition-duration: 0.01ms !important;
  }

  .mobile-nav-active .navmenu > ul > li {
    transition-delay: 0ms;
  }

  .hero-scroll-cue i {
    animation: none !important;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --footer-deep-navy: #07163f;
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #ffffff;
  background-color: var(--footer-deep-navy);
  font-size: 14px;
  --footer-shift-x: 0px;
  --footer-shift-y: 0px;
}

.footer .footer-scene {
  position: absolute;
  top: -55px;
  right: 0;
  left: 0;
  height: 590px;
  overflow: hidden;
  pointer-events: none;
}

.footer .footer-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 63, 0.72) 0%, rgba(7, 22, 63, 0.9) 48%, var(--footer-deep-navy) 93%);
}

.footer .footer-scene img {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: calc(100% + 240px);
  object-fit: cover;
  object-position: center 38%;
  transform: translate3d(0, var(--footer-shift-y), 0) scale(1.025);
  will-change: transform;
  transition: transform 180ms ease-out;
}

.footer .footer-cta,
.footer .footer-main,
.footer .footer-bottom {
  position: relative;
  z-index: 1;
}

.footer .footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(70px, 10vw, 160px);
  min-height: 510px;
  padding-top: 106px;
  padding-bottom: 132px;
  align-items: start;
}

.footer .footer-cta-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  background-color: transparent;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer .footer-cta-heading > span::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #ffffff;
}

.footer .footer-cta-heading h2 {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -2px;
}

.footer .footer-cta-heading h2 > span {
  display: block;
}

.footer .footer-cta-heading h2 em {
  display: block;
  margin-top: 8px;
  margin-left: 34px;
  color: #aaa29d;
  font-weight: 300;
  font-style: italic;
}

.footer .footer-cta-content {
  padding-top: 47px;
}

.footer .footer-cta-button {
  width: auto;
  min-width: 194px;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #111111;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.footer .footer-cta-button i {
  font-size: 17px;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.footer .footer-cta-button:hover i {
  transform: translateX(6px);
}

.footer .footer-cta-content p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.72;
}

.footer .footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.72fr 0.72fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 68px;
  padding-bottom: 64px;
}

.footer .footer-brand {
  padding-right: clamp(35px, 6vw, 92px);
}

.footer .footer-brand > a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  color: #ffffff;
  text-decoration: none;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.12));
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.footer .footer-brand > a:hover {
  opacity: 1;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.18));
}

.footer .footer-brand-logo {
  display: block;
  width: 220px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer .footer-brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  transform: rotate(-8deg);
}

.footer .footer-brand-mark i {
  display: block;
  background-color: #ffffff;
  border-radius: 2px;
}

.footer .footer-brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

.footer .footer-brand-name small {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.48em;
}

.footer .footer-brand p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.75;
}

.footer .footer-brand-socials {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
}

.footer .footer-brand-socials a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease, text-shadow 0.3s ease;
}

.footer .footer-brand-socials a:hover {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.3);
}

.footer .footer-column {
  min-width: 0;
  padding-left: clamp(24px, 3vw, 46px);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.footer .footer-column h3 {
  margin: 0 0 27px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

.footer .footer-column a,
.footer .footer-column address {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer .footer-column a:hover {
  opacity: 0.55;
}

.footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .footer-contact .footer-phone {
  margin-bottom: 3px;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 22px;
  letter-spacing: -0.5px;
}

.footer .footer-hours {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.footer .footer-contact address {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer .footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11.5px;
  letter-spacing: 0.01em;
}

.footer .footer-bottom p strong {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 500;
}

.footer .footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer .footer-credit {
  margin-left: 8px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  white-space: nowrap;
}

.footer .footer-credit a {
  margin-left: 3px;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.01em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer .footer-credit a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
}

@media (max-width: 991px) {
  .footer .footer-cta {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 100px;
  }

  .footer .footer-cta-content {
    max-width: 520px;
    padding-top: 0;
  }

  .footer .footer-main {
    grid-template-columns: 1.25fr 1fr 1fr;
    row-gap: 58px;
  }

  .footer .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer .footer-column:nth-child(2) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 575px) {
  .footer .footer-scene {
    top: 0;
    height: 510px;
  }

  .footer .footer-scene img {
    transform: translate3d(0, var(--footer-shift-y), 0) scale(1.04);
  }

  .footer .footer-cta {
    min-height: 0;
    padding-top: 82px;
    padding-bottom: 96px;
  }

  .footer .footer-cta-heading h2 {
    font-size: 34px;
    letter-spacing: -1.5px;
  }

  .footer .footer-cta-heading h2 em {
    margin-left: 0;
  }

  .footer .footer-cta-button {
    min-height: 44px;
  }

  .footer .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 48px 20px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .footer .footer-brand,
  .footer .footer-contact {
    grid-column: 1 / -1;
  }

  .footer .footer-column {
    padding-left: 0;
    border-left: 0;
  }

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

  .footer .footer-bottom-links {
    flex-wrap: wrap;
  }

  .footer .footer-credit {
    width: 100%;
    margin-left: 0;
    padding: 2px 0 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer .footer-scene img {
    transition: none;
    transform: scale(1.025);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

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

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 9, 0.63) 0%,
      rgba(8, 10, 9, 0.19) 47%,
      rgba(8, 10, 9, 0.52) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 10, 9, 0.45) 0%,
      rgba(8, 10, 9, 0.03) 40%,
      rgba(8, 10, 9, 0.7) 100%
    );
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100vh;
  padding: 138px 3.7% 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-heading {
  position: relative;
  width: min(900px, 80%);
  margin: 96px 0 0;
}

.hero-heading h1,
.hero-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  font-weight: 500;
  line-height: 1.09;
  letter-spacing: -0.045em;
}

.hero-heading h1 span,
.hero-heading h2 span {
  display: block;
  white-space: nowrap;
}

.hero-heading .hero-title-primary {
  color: #ffffff;
  font-weight: 500;
}

.hero-heading .hero-title-secondary {
  margin-top: 0.08em;
  padding-left: clamp(24px, 3vw, 52px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9em;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.025em;
}

.hero-bottom {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(650px, 1.28fr);
  gap: 50px;
  align-items: end;
}

.hero-intro {
  max-width: 510px;
}

.hero-intro p {
  max-width: 490px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
}

.hero-button {
  display: inline-flex;
  min-width: 184px;
  height: 46px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: #fff;
  color: #171717;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.hero-button i {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.hero-button:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  transform: none;
}

.hero-button:hover i {
  transform: translateX(6px);
}

.hero-features {
  width: min(100%, 720px);
  max-width: 720px;
  min-height: 68px;
  padding: 0 16px;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(65, 65, 61, 0.52);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-feature {
  min-height: 44px;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.hero-feature:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-feature i {
  flex: 0 0 auto;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
}

.hero-feature span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.68rem;
  line-height: 1.45;
}

.hero-control {
  position: absolute;
  top: 16%;
  bottom: 20%;
  z-index: 10;
  width: clamp(76px, 9vw, 140px);
  height: auto;
  padding: 0;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transform: none;
}

.hero-control i {
  font-size: 1.45rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.35s ease;
}

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

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

.hero-control-prev i {
  transform: translateX(-8px);
}

.hero-control-next i {
  transform: translateX(8px);
}

.hero-control:hover i,
.hero-control:focus-visible i {
  opacity: 1;
  transform: translateX(0);
}

.hero-control:focus-visible {
  outline: none;
}

.hero-pagination {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 8;
  display: none;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
}

.hero-pagination span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero-pagination-line {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-scroll-cue {
  display: none;
}

@keyframes heroScrollDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

.hero-slide.active .hero-heading {
  animation: heroContentFade 0.65s ease both;
}

.hero-slide.active .hero-intro {
  animation: heroContentFade 0.65s 0.08s ease both;
}

.hero-slide.active .hero-features {
  animation: heroContentFade 0.65s 0.14s ease both;
}

@keyframes heroContentFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  .hero-container {
    padding-top: 130px;
  }

  .hero-heading {
    margin: 78px 0 0;
  }

  .hero-bottom {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 30px;
  }

  .hero-features {
    padding: 0 12px;
  }

  .hero-feature {
    padding: 5px 13px;
    gap: 11px;
  }

  .hero-feature i {
    font-size: 1.4rem;
  }

  .hero-feature span {
    font-size: 0.7rem;
  }
}

@media (max-width: 991px) {
  .hero,
  .hero-slider,
  .hero-slide,
  .hero-container {
    min-height: 850px;
  }

  .hero-container {
    padding: 120px 28px 35px;
  }

  .hero-heading {
    width: 100%;
  }

  .hero-heading h1,
  .hero-heading h2 {
    font-size: clamp(2.7rem, 6.4vw, 4rem);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-intro {
    max-width: 520px;
  }

  .hero-features {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero,
  .hero-slider,
  .hero-slide,
  .hero-container {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-container {
    padding: 105px 20px 88px;
    justify-content: flex-end;
    gap: 30px;
  }

  .hero-slide > img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(8, 10, 9, 0.55) 0%,
        rgba(8, 10, 9, 0.16) 40%,
        rgba(8, 10, 9, 0.88) 100%
      );
  }

  .hero-heading h1,
  .hero-heading h2 {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
    line-height: 1.08;
  }

  .hero-heading {
    width: 100%;
    max-width: 370px;
    margin: 0;
    text-align: left;
  }

  .hero-heading h1,
  .hero-heading h2 {
    font-size: clamp(1.5rem, 7.8vw, 2.4rem);
    line-height: 1.14;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
  }

  .hero-heading .hero-title-secondary {
    margin-top: 5px;
    padding-left: 14px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.94em;
  }

  .hero-bottom {
    gap: 26px;
  }

  .hero-intro p {
    margin-bottom: 20px;
    font-size: 0.92rem;
  }

  .hero-intro {
    order: 2;
  }

  .hero-button {
    min-width: 172px;
    height: 44px;
    padding: 0 18px;
    font-size: 13px;
  }

  .hero-features {
    order: 1;
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 5px 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    counter-reset: hero-feature;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-feature {
    counter-increment: hero-feature;
    min-height: 46px;
    padding: 7px 0;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) 22px;
    gap: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-feature:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero-feature::before {
    content: "0" counter(hero-feature);
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  .hero-feature span {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    overflow: visible;
    font-size: clamp(0.56rem, 2.4vw, 0.68rem);
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    text-overflow: clip;
  }

  .hero-feature i {
    grid-column: 3;
    grid-row: 1;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    background: transparent;
    border-radius: 0;
  }

  .hero-slide.active .hero-features {
    animation-delay: 0.08s;
  }

  .hero-slide.active .hero-intro {
    animation-delay: 0.16s;
  }

  .hero-control {
    display: none;
  }

  .hero-scroll-cue {
    position: absolute;
    bottom: 16px;
    left: 50%;
    z-index: 12;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transform: translateX(-50%);
  }

  .hero-scroll-cue i {
    font-size: 1.45rem;
    line-height: 1;
    animation: heroScrollDown 1.55s ease-in-out infinite;
  }
}

@media (max-width: 480px) {
  .hero,
  .hero-slider,
  .hero-slide,
  .hero-container {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-heading h1,
  .hero-heading h2 {
    font-size: clamp(1.5rem, 7.8vw, 2.3rem);
  }

  .hero-intro p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-features {
    padding: 5px 12px;
  }

  .hero-feature {
    min-height: 44px;
  }

  .hero-feature i {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-heading h1,
  .hero-heading h2 {
    font-size: 1.45rem;
  }
}

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

.about-info .about-info-header {
  margin-bottom: 72px;
}

/* About Info Heading */
.about-info .about-info-heading {
  max-width: 670px;
}

.about-info .about-info-subtitle {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 26px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.about-info .about-info-subtitle::after {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background-color: currentColor;
}

.about-info .about-info-heading h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -2.8px;
  color: var(--heading-color);
}

.about-info .about-info-heading h2 span,
.about-info .about-info-heading h2 em {
  display: block;
}

.about-info .about-info-heading h2 em {
  margin-top: 6px;
  color: var(--brand-gold);
  opacity: 0.74;
  font-weight: 400;
  font-style: italic;
}

/* About Info Content */
.about-info .about-info-content {
  max-width: 560px;
  padding-top: 34px;
}

.about-info .about-info-content p {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-info .about-info-content .about-info-lead {
  margin-bottom: 16px;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: -0.25px;
  color: var(--heading-color);
}

.about-info .about-info-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 184px;
  height: 46px;
  margin-top: 18px;
  padding: 0 20px;
  border: 1px solid var(--heading-color);
  border-radius: 999px;
  background-color: var(--heading-color);
  color: var(--background-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.about-info .about-info-button i {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.about-info .about-info-button:hover {
  background-color: transparent;
  color: var(--heading-color);
}

.about-info .about-info-button:hover i {
  transform: translateX(6px);
}

/* About Info Image */
.about-info .about-info-image-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  margin-bottom: 80px;
  overflow: hidden;
  background-color: color-mix(
    in srgb,
    var(--default-color),
    transparent 94%
  );
}

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

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

.about-info .about-info-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.08) 66%);
}

.about-info .about-info-image-content {
  position: absolute;
  right: 48px;
  left: 48px;
  bottom: 44px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(360px, 1fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}

.about-info .about-info-image-content span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.74);
}

.about-info .about-info-image-content span b {
  color: #ffffff;
  font-weight: 600;
}

.about-info .about-info-image-content p {
  margin: 0;
  font-family: var(--heading-font);
  max-width: 720px;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.9px;
  color: #ffffff;
}

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

.about-info .about-info-stat {
  position: relative;
  min-height: 205px;
  padding: 34px 32px 28px;
  display: flex;
  flex-direction: column;
}

.about-info .about-info-stats > div:not(:last-child) .about-info-stat {
  border-right: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 84%
  );
}

.about-info .about-info-stat-title {
  display: block;
  order: 2;
  margin-bottom: 11px;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: var(--heading-color);
}

.about-info .about-info-stat-index {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  order: 1;
  margin-bottom: 27px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #756c66;
}

.about-info .about-info-stat-index::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: rgba(117, 108, 102, 0.55);
}

.about-info .about-info-stat p {
  order: 3;
  max-width: 245px;
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
}

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

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

  .about-info .about-info-heading h2 {
    letter-spacing: -2px;
  }

  .about-info .about-info-content {
    max-width: 100%;
    padding-top: 0;
  }

  .about-info .about-info-image-wrapper {
    height: 440px;
    margin-bottom: 60px;
  }

  .about-info .about-info-stats > div:nth-child(2) .about-info-stat {
    border-right: 0;
  }

  .about-info .about-info-stats > div:nth-child(-n + 2) .about-info-stat {
    border-bottom: 1px solid color-mix(
      in srgb,
      var(--default-color),
      transparent 84%
    );
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-info {
    padding: 75px 0;
  }

  .about-info .about-info-header {
    margin-bottom: 45px;
  }

  .about-info .about-info-heading h2 {
    font-size: 42px;
    letter-spacing: -1.8px;
  }

  .about-info .about-info-content p {
    font-size: 14px;
  }

  .about-info .about-info-image-wrapper {
    height: 390px;
    margin-bottom: 50px;
  }

  .about-info .about-info-image-content {
    right: 25px;
    left: 25px;
    bottom: 28px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-info .about-info-image-content p {
    font-size: 27px;
  }

  .about-info .about-info-stat {
    padding-right: 25px;
    padding-left: 25px;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .about-info .about-info-heading h2 {
    font-size: 37px;
    line-height: 1.12;
  }

  .about-info .about-info-button {
    width: auto;
  }

  .about-info .about-info-image-wrapper {
    height: 360px;
  }

  .about-info .about-info-image-overlay {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.08) 80%
    );
  }

  .about-info .about-info-stats > div .about-info-stat {
    min-height: auto;
    padding: 32px 5px;
    border-right: 0 !important;
    border-bottom: 1px solid color-mix(
      in srgb,
      var(--default-color),
      transparent 84%
    );
  }

  .about-info .about-info-stats > div:last-child .about-info-stat {
    border-bottom: 0;
  }

  .about-info .about-info-stat-title {
    min-height: auto;
    margin-bottom: 18px;
  }

  .about-info .about-info-stat-index {
    margin-bottom: 20px;
  }

  .about-info .about-info-stat p {
    max-width: 300px;
  }
}

/*--------------------------------------------------------------
# Services Info Section
--------------------------------------------------------------*/
.services-info {
  padding: 86px 0 120px;
  background: var(--background-color);
}

.services-info .services-info-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
  column-gap: clamp(60px, 9vw, 140px);
  max-width: none;
  margin: 0 0 96px;
  text-align: left;
}

.services-info .services-info-subtitle {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  margin-bottom: 26px;
}

.services-info .services-info-subtitle::after {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background-color: currentColor;
}

.services-info .services-info-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -2.8px;
  color: var(--heading-color);
}

.services-info .services-info-heading h2 span,
.services-info .services-info-heading h2 em {
  display: block;
}

.services-info .services-info-heading h2 em {
  margin-top: 6px;
  color: #8a817a;
  font-weight: 400;
  font-style: italic;
}

.services-info .services-info-heading-copy {
  max-width: 520px;
  padding-top: 34px;
}

.services-info .services-info-heading-copy p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.72;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services-info .services-info-heading-copy .services-info-heading-lead {
  margin-bottom: 16px;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: -0.25px;
  color: var(--heading-color);
}

.services-info .services-info-heading-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 184px;
  height: 46px;
  margin-top: 18px;
  padding: 0 20px;
  border: 1px solid var(--heading-color);
  border-radius: 999px;
  background-color: var(--heading-color);
  color: var(--background-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.services-info .services-info-heading-button i {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.services-info .services-info-heading-button:hover {
  color: var(--heading-color);
  background-color: transparent;
}

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

.services-info .services-info-list {
  display: flex;
  flex-direction: column;
  gap: 108px;
}

.services-info .services-info-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(42px, 6vw, 88px);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 62px;
}

.services-info .services-info-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 370px;
  margin: 0;
}

.services-info .services-info-meta {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 16px;
  padding-top: 0;
}

.services-info .services-info-content h3 {
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1.4px;
  color: var(--heading-color);
  margin: 0 0 18px;
  max-width: 620px;
}

.services-info .services-info-content h3 strong {
  font-weight: 600;
}

.services-info .services-info-content h3 span {
  margin-left: 5px;
  color: #8a817a;
  font-weight: 300;
  font-style: italic;
}

.services-info .services-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-info .services-info-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  background: transparent;
}

.services-info .services-info-link {
  margin-top: auto;
  padding-top: 0;
  text-align: left;
}

.services-info .services-info-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 156px;
  height: 42px;
  padding: 0 17px;
  border: 1px solid var(--heading-color);
  border-radius: 999px;
  text-decoration: none;
  color: var(--heading-color);
  background-color: transparent;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.services-info .services-info-link a::after {
  content: none;
}

.services-info .services-info-link a:hover {
  color: #ffffff;
  background-color: var(--heading-color);
  border-color: var(--heading-color);
}

.services-info .services-info-link a i {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.services-info .services-info-description {
  max-width: 330px;
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 34%);
}

.services-info .services-info-image {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

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

.services-info .services-info-image img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 6px;
}



/* Tablet */
@media (max-width: 1199.98px) {
  .services-info .services-info-item {
    grid-template-columns: minmax(250px, 0.34fr) minmax(0, 0.66fr);
    gap: 40px;
  }

  .services-info .services-info-image {
    display: block;
  }

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

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

/* Mobile */
@media (max-width: 991.98px) {
  .services-info {
    padding: 64px 0 80px;
  }

  .services-info .services-info-heading {
    display: block;
    margin-bottom: 60px;
  }

  .services-info .services-info-heading h2 {
    margin-bottom: 26px;
    font-size: 42px;
    letter-spacing: -2px;
  }

  .services-info .services-info-heading-copy {
    max-width: 600px;
    padding-top: 0;
  }

  .services-info .services-info-top {
    min-height: 0;
    margin: 0;
  }

  .services-info .services-info-meta,
  .services-info .services-info-link {
    padding-top: 0;
  }

  .services-info .services-info-link {
    margin-top: 30px;
    text-align: left;
  }

  .services-info .services-info-content h3 {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .services-info .services-info-tags {
    gap: 10px;
  }

  .services-info .services-info-tags span {
    padding: 8px 12px;
    font-size: 11px;
  }

  .services-info .services-info-image {
    display: block;
    margin: 0;
  }

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

  .services-info .services-info-item {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 42px;
  }
}

@media (max-width: 575.98px) {
  .services-info .services-info-heading h2 {
    font-size: 36px;
    line-height: 1.08;
  }

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

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

  .services-info .services-info-image img {
    height: 230px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 112px 0 108px;
  background-color: #ffffff;
}

.contact .contact-heading {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 62px;
  padding-bottom: 28px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
}

.contact .contact-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact .contact-heading > span::after {
  content: "";
  width: 28px;
  height: 1px;
  background-color: currentColor;
}

.contact .contact-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.contact .contact-heading h2 strong {
  color: var(--heading-color);
  font-weight: 550;
}

.contact .contact-heading h2 em {
  margin-left: 6px;
  color: #8a817a;
  font-weight: 300;
  font-style: italic;
}

.contact .contact-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.contact .contact-cards {
  display: grid;
  gap: 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  counter-reset: contact-card;
}

.contact .contact-card {
  min-height: 0;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 42px;
  grid-template-rows: auto auto auto;
  column-gap: 10px;
  align-items: start;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  background-color: transparent;
  counter-increment: contact-card;
}

.contact .contact-card::before {
  content: "0" counter(contact-card);
  grid-column: 1;
  grid-row: 1;
  padding-top: 3px;
  color: #8a817a;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.contact .contact-card > i {
  grid-column: 3;
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 76%);
  border-radius: 50%;
  color: var(--heading-color);
  font-size: 16px;
  line-height: 1;
}

.contact .contact-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.contact .contact-card p {
  grid-column: 2;
  grid-row: 2;
  max-width: 190px;
  margin: 8px 0 18px;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-size: 10px;
  line-height: 1.55;
}

.contact .contact-card a {
  grid-column: 2;
  grid-row: 3;
  justify-self: start;
  min-height: 32px;
  margin-top: 0;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--heading-color);
  background-color: #ffffff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 87%);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.contact .contact-card a i {
  font-size: 10px;
}

.contact .contact-card a:hover {
  color: #ffffff;
  background-color: var(--heading-color);
  border-color: var(--heading-color);
}

.contact .form-wrapper {
  padding: 8px 0 0;
  background-color: transparent;
}

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

.contact .form-wrapper .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #756c66;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

.contact .form-wrapper .form-group input,
.contact .form-wrapper .form-group select,
.contact .form-wrapper .form-group textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
  border-radius: 0;
  padding: 6px 0 12px;
  font-size: 14px;
  color: var(--default-color);
  background-color: transparent;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact .form-wrapper .form-group input,
.contact .form-wrapper .form-group select {
  min-height: 43px;
}

.contact .form-wrapper .form-group input:focus,
.contact .form-wrapper .form-group select:focus,
.contact .form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: var(--heading-color);
  box-shadow: none;
}

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

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

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

.contact .insurance-select {
  position: relative;
  z-index: 12;
}

.contact .insurance-select-trigger {
  width: 100%;
  min-height: 43px;
  padding: 6px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 78%);
  border-radius: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.contact .insurance-select-trigger i {
  color: color-mix(in srgb, var(--brand-gold-deep), var(--brand-charcoal) 74%);
  font-size: 12px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact .insurance-select.is-open .insurance-select-trigger {
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--brand-gold-deep), transparent 55%);
}

.contact .insurance-select-trigger[aria-invalid="true"] {
  border-color: rgba(163, 56, 56, 0.62);
}

.contact .insurance-select.is-open .insurance-select-trigger i {
  transform: rotate(180deg);
}

.contact .insurance-select-menu {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 310px;
  padding: 8px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(23, 21, 15, 0.11);
  border-radius: 9px;
  box-shadow: 0 20px 42px rgba(23, 21, 15, 0.1);
  transform: translateY(-7px);
  transition: opacity 0.34s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.34s ease;
}

.contact .insurance-select.is-open .insurance-select-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact .insurance-select-menu button {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 21, 15, 0.055);
  border-radius: 5px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 550;
  text-align: left;
  cursor: pointer;
  transition: color 0.28s ease, background-color 0.28s ease, padding-left 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact .insurance-select-menu button:last-child {
  border-bottom: 0;
}

.contact .insurance-select-menu button:hover,
.contact .insurance-select-menu button:focus-visible,
.contact .insurance-select-menu button[aria-selected="true"] {
  padding-left: 19px;
  color: var(--heading-color);
  background-color: color-mix(in srgb, var(--brand-gold-soft), transparent 64%);
  outline: none;
}

.contact .insurance-select-menu {
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 21, 15, 0.4) transparent;
}

.contact .insurance-select-menu::-webkit-scrollbar {
  width: 6px;
}

.contact .insurance-select-menu::-webkit-scrollbar-track {
  background: transparent;
}

.contact .insurance-select-menu::-webkit-scrollbar-thumb {
  background-color: rgba(23, 21, 15, 0.34);
  border-radius: 999px;
}

@media (max-width: 575px) {
  .contact .insurance-select-menu {
    max-height: 270px;
  }
}

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

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

.contact .form-wrapper .submit-btn {
  width: 100%;
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ffffff;
  background: var(--brand-gold-deep);
  border: 1px solid var(--brand-gold-deep);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
  letter-spacing: 0;
}

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

.contact .form-wrapper .submit-btn:hover {
  color: var(--brand-gold-deep);
  background: transparent;
  transform: none;
  box-shadow: none;
}

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

@media (max-width: 991px) {
  .contact .contact-heading,
  .contact .contact-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 38px;
  }
}

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

  .contact .contact-heading,
  .contact .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .contact .contact-heading h2 {
    font-size: 36px;
  }

  .contact .contact-heading h2 em {
    display: block;
    margin: 6px 0 0;
  }

  .contact .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact .form-wrapper {
    padding-top: 10px;
  }

  .contact .form-wrapper .submit-btn {
    min-height: 52px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-content {
  font-size: 16px;
  line-height: 1.7;
}

.privacy .privacy-content .last-updated {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.privacy .privacy-content .last-updated p {
  margin: 0;
  color: var(--heading-color);
}

.privacy .privacy-content .privacy-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .privacy-section h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.privacy .privacy-content .privacy-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.privacy .privacy-content .privacy-section h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.privacy .privacy-content .privacy-section h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section ul,
.privacy .privacy-content .privacy-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy .privacy-content .privacy-section ul li,
.privacy .privacy-content .privacy-section ol li {
  margin-bottom: 10px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .info-box h4 {
  color: var(--heading-color);
  margin-top: 0;
}

.privacy .privacy-content .privacy-section .highlight-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--contrast-color);
  margin: 40px 0;
}

.privacy .privacy-content .privacy-section .highlight-box i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .highlight-box h4 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .highlight-box p {
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}

.privacy .privacy-content .privacy-section .security-measures {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy .privacy-content .privacy-section .security-measures .measure-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item h5 {
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .rights-list {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .rights-list .right-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.privacy .privacy-content .privacy-section .rights-list .right-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 20px;
  margin-top: 5px;
  min-width: 24px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div {
  flex: 1;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div h5 {
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .cookie-types {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .cookie-types h4 {
  margin-bottom: 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table {
  margin: 0;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead th {
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 15px 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 15px 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.privacy .privacy-content .contact-section {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .contact-section h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.privacy .privacy-content .contact-section h3:after {
  background: var(--accent-color);
}

.privacy .privacy-content .contact-section .contact-info {
  margin-top: 30px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 18px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item span {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .privacy .privacy-content {
    font-size: 15px;
  }

  .privacy .privacy-content .privacy-section h3 {
    font-size: 24px;
  }

  .privacy .privacy-content .privacy-section h4 {
    font-size: 20px;
  }

  .privacy .privacy-content .privacy-section .security-measures .row>div {
    margin-bottom: 20px;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item {
    flex-direction: column;
    text-align: center;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}

.error-404 .error-content {
  margin-bottom: 80px;
}

.error-404 .error-content .error-number {
  font-size: 8rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-number {
    font-size: 6rem;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-number {
    font-size: 4.5rem;
  }
}

.error-404 .error-content .error-title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-title {
    font-size: 2rem;
  }
}

.error-404 .error-content .error-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

.error-404 .error-content .error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.error-404 .error-content .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-content .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .error-404 .error-content .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-404 .error-content .error-actions .btn-primary,
  .error-404 .error-content .error-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.error-404 .error-content .search-section .search-label {
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.error-404 .error-content .search-section .search-form {
  max-width: 400px;
  margin: 0 auto;
}

.error-404 .error-content .search-section .search-form .search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input {
  width: 100%;
  padding: 16px 60px 16px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn {
  position: absolute;
  right: 8px;
  background: var(--accent-color);
  border: none;
  border-radius: 6px;
  padding: 12px;
  color: var(--contrast-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn i {
  font-size: 1rem;
}

.error-404 .helpful-links .links-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .error-404 .helpful-links .links-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
}

.error-404 .helpful-links .link-item {
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-10px);
}

.error-404 .helpful-links .link-item .link-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.error-404 .helpful-links .link-item h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.error-404 .helpful-links .link-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.error-404 .helpful-links .link-item .link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  gap: 12px;
}

.error-404 .helpful-links .link-item .link-cta i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover i {
  transform: translateX(3px);
}

.error-404 .helpful-links .link-item:hover .link-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .helpful-links .link-item {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
    min-height: auto;
  }

  .error-404 .error-content {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-title {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* Sabit çağrı butonu */
.call-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: var(--brand-gold);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 9px 24px rgba(23, 21, 15, 0.17);
  text-decoration: none;
  transform: scale(1);
  transition: transform 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

.call-button i {
  font-size: 21px;
  line-height: 1;
  transform-origin: 50% 55%;
  animation: callButtonRing 3.6s ease-in-out infinite;
}

.call-button:hover {
  color: #ffffff;
  background-color: color-mix(in srgb, var(--brand-gold), #000000 5%);
  box-shadow: 0 12px 28px rgba(23, 21, 15, 0.21);
  transform: scale(1.07);
}

@keyframes callButtonRing {
  0%, 70%, 100% { transform: rotate(0deg); }
  74% { transform: rotate(-13deg); }
  78% { transform: rotate(11deg); }
  82% { transform: rotate(-9deg); }
  86% { transform: rotate(7deg); }
  90% { transform: rotate(0deg); }
}

@media (max-width: 575px) {
  .call-button {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

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

/*--------------------------------------------------------------
# A Global Sigorta Brand Palette Touches
--------------------------------------------------------------*/
.hero-heading .hero-title-secondary {
  color: color-mix(in srgb, #ffffff 94%, var(--brand-gold) 6%);
  opacity: 0.8;
}

.hero-feature i {
  color: color-mix(in srgb, #ffffff 58%, var(--brand-gold) 42%);
}

.about-info .about-info-subtitle,
.services-info .services-info-meta,
.contact .contact-heading > span,
.section-title-kicker {
  color: color-mix(in srgb, var(--default-color) 76%, var(--brand-gold-deep) 24%);
}

.about-info .about-info-subtitle::after,
.contact .contact-heading > span::after,
.section-title-kicker::before {
  background-color: color-mix(in srgb, var(--brand-gold), transparent 54%);
}

.about-info .about-info-stat-index,
.faq .faq-number {
  color: color-mix(in srgb, var(--default-color) 68%, var(--brand-gold-deep) 32%);
}

.about-info .about-info-stat-index::after {
  background-color: color-mix(in srgb, var(--brand-gold), transparent 62%);
}

.services-info .services-info-tags span:first-child {
  color: color-mix(in srgb, var(--default-color) 82%, var(--brand-gold-deep) 18%);
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 82%);
}

.contact .contact-card::before,
.contact .contact-card > i {
  color: var(--brand-gold-deep);
}

.contact .contact-card > i {
  border-color: color-mix(in srgb, var(--brand-gold), transparent 68%);
}

.contact .form-wrapper .form-group:focus-within {
  border-color: var(--brand-gold-deep);
}

.footer .footer-cta-heading > span::before,
.footer .footer-column h3 {
  color: color-mix(in srgb, #ffffff 70%, var(--brand-gold) 30%);
  background-color: color-mix(in srgb, var(--brand-gold), transparent 32%);
}

.footer .footer-column h3 {
  background-color: transparent;
}

.footer .footer-brand-socials a:hover,
.footer .footer-credit a:hover {
  color: var(--brand-gold);
  text-shadow: 0 0 14px color-mix(in srgb, var(--brand-gold), transparent 70%);
}

.footer .footer-address {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1199px) {
  .navmenu li:not(.mobile-menu-cta)::before {
    background-color: color-mix(in srgb, var(--brand-gold-deep), transparent 74%);
  }

  .navmenu li:hover::before,
  .navmenu li:has(> a.active)::before {
    background-color: color-mix(in srgb, var(--brand-gold-deep), transparent 54%);
  }

  .navmenu .dropdown ul {
    background-color: transparent;
    border-radius: 0;
  }

  .navmenu .dropdown ul li {
    opacity: 1;
    margin: 2px 0;
    border-bottom: 0;
    transform: none;
  }

  .navmenu .dropdown ul li:last-child {
    border-bottom: 0;
  }

  .navmenu .dropdown ul a,
  .navmenu .dropdown ul a:focus {
    padding: 11px 10px 11px 17px;
    color: var(--brand-charcoal);
    font-size: 14.5px;
    line-height: 1.35;
  }

  .navmenu .dropdown ul li::before {
    display: none;
  }

  .navmenu .dropdown > a:has(.toggle-dropdown) .toggle-dropdown {
    color: color-mix(in srgb, var(--brand-charcoal) 86%, var(--brand-gold-deep) 14%);
    background-color: #f2f1ed;
  }
}
