@import url("../css/vendor/bootstrap.min.css");

@font-face {
  font-family: "Metropolis";
  src:
    url("../fonts/Metropolis-Regular.woff2") format("woff2"),
    url("../fonts/Metropolis-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src:
    url("../fonts/Metropolis-Medium.woff2") format("woff2"),
    url("../fonts/Metropolis-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src:
    url("../fonts/Metropolis-SemiBold.woff2") format("woff2"),
    url("../fonts/Metropolis-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src:
    url("../fonts/Metropolis-Bold.woff2") format("woff2"),
    url("../fonts/Metropolis-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src:
    url("../fonts/Metropolis-ExtraBold.woff2") format("woff2"),
    url("../fonts/Metropolis-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------- */
/* Custom properties            */
/* ---------------------------- */
:root {
  --primary-color: #2a2a2a;
  --secondary-color: #efefef;
  --text-color: #7a7a7a;
  --text-color-1: #d3d3d3;
  --accent-color: #ffffff;
  --heading-color-1: #f5f5f7;
  --heading-color-2: #be1a2a;
  --heading-color-3: #be1a2a;
  --transparent-color-1: #02010100;
  --rating-color: #fec42d;
  --overlay-color: #000000;
  --overlay-color-2: #020101;
  --bg-form: #fafafa;

  --font: "Metropolis", sans-serif;

  /* Custom Size */
  --button-icon-size: 50px;
  --md-button-icon-size: 45px;
  --btn-icon-arrow: 30px;
  --icon-qoute-size: 70px;
  --text-big: 30px;
  --text-huge: 200px;
  --text-small-huge: 150px;

  /* Heading Font Sizes - Desktop */
  --text-5xl: 100px;
  --text-4xl: 56px;
  --text-3xl: 40px;
  --text-2xl: 26px;
  --text-xl: 20px;
  --text-base: 18px;

  /* Heading Font Sizes - Tablet */
  --md-text-5xl: 80px;
  --md-text-4xl: 40px;
  --md-text-3xl: 28px;
  --md-text-2xl: 23px;
  --md-text-xl: 18px;
  --md-text-base: 16px;

  /* Heading Font Sizes - Mobile */
  --sm-text-5xl: 61px;
  --sm-text-4xl: 27px;
  --sm-text-3xl: 23px;
  --sm-text-2xl: 20px;
  --sm-text-xl: 16px;
  --sm-text-base: 15px;

  /* Line Height */
  --leading-short: 0.8em;
  --leading-small: 1em;
  --leading-medium: 1.1em;
  --leading-normal: 1.2em;
}

/* ---------------------------- */
/* Typography                   */
/* ---------------------------- */
h1 {
  font-size: 100px;
  font-weight: 600;
  line-height: var(--text-5xl);
}

h2,
.heading-2 {
  font-size: 56px;
  font-weight: 600;
  line-height: var(--leading-medium);
}

h3 {
  font-size: 40px;
  font-weight: 600;
}

h4 {
  font-size: 26px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

h6 {
  font-size: 18px;
  font-weight: 600;
}

p,
li {
  font-size: 18px;
}

a {
  color: var(--heading-color-1);
  text-decoration: none;
}

/* ---------------------------- */
/* General Styles               */
/* ---------------------------- */
body {
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--text-color);
  background-color: var(--secondary-color);
}

.b-container {
  max-width: 1350px;
  margin-right: auto;
  margin-left: auto;
}

.section {
  padding: 120px 20px 120px 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.bg-heading-color-1 {
  background-color: var(--heading-color-1) !important;
}

.bg-heading-color-2 {
  background-color: var(--heading-color-2) !important;
}

.bg-heading-color-3 {
  background-color: var(--heading-color-3) !important;
}

.bg-secondary-color {
  background-color: var(--secondary-color) !important;
}

.bg-accent-color {
  background-color: var(--accent-color) !important;
}

.text-primary-color {
  color: var(--primary-color) !important;
}

.text-secondary-color {
  color: var(--secondary-color) !important;
}

.text-heading-color-1 {
  color: var(--heading-color-1) !important;
}

.text-heading-color-2 {
  color: var(--heading-color-2) !important;
}

.text-heading-color-3 {
  color: var(--heading-color-3) !important;
}

.text-color-1 {
  color: var(--text-color-1) !important;
}

.text-rating-color {
  color: var(--rating-color) !important;
}

.text-small {
  font-size: var(--sm-text-base);
}

.text-medium {
  font-size: var(--text-xl);
}

.text-big {
  font-size: var(--text-big);
}

.text-semi-bold {
  font-weight: 500;
}

.text-big-title {
  font-size: var(--text-huge);
  line-height: var(--leading-short);
  font-weight: 600;
}

.title-max-w {
  max-width: 800px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-bottom: -100px;
  z-index: 999;
  padding: 0px 8px;
  background-color: transparent;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.header.is-scrolled {
  background-color: #222222;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header-logo {
  max-width: 225px;
  width: 225px;
}

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

.language-switcher {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.language-current,
.language-switcher-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 6px 12px 6px 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: background-color .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.language-current {
  cursor: pointer;
}

.language-current i {
  font-size: 11px;
  transition: transform .2s ease;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 20;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher:hover .language-current i,
.language-switcher:focus-within .language-current i {
  transform: rotate(180deg);
}

.language-switcher:hover .language-current,
.language-switcher:focus-within .language-current,
.language-switcher-item:hover,
.language-switcher-item:focus {
  background: #fff;
  color: #cf1424;
  border-color: #fff;
  transform: translateY(-1px);
}

.language-flag {
  width: 28px;
  height: 28px;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .45);
}

.home-hero {
  height: 100vh;
  max-height: 890px;
  overflow: hidden;
}

.home-hero h1 {
  max-width: 600px;
}

.home-hero .spacer-bottom-right {
  position: relative;
  left: -12px;
  margin-left: -30px;
}

.home-hero .spacer-bottom-left {
  position: relative;
  right: -12px;
}

.hero-desc {
  max-width: 388px;
  margin-top: -80px;
}

.hero-content {
  max-width: 850px;
  padding: 30px 30px 0px 30px;
  background-color: var(--heading-color-3);
  border-radius: 25px 25px 0px 0px;
}

.hero-content img {
  height: 160px;
}

.hero-content h5 {
  padding: 0px 10px 10px 0px;
  border-bottom-right-radius: 10px;
}

.kb-bg {
  z-index: 0;
}

.count-up {
  line-height: var(--leading-medium);
}

/* Carousel Wrapper */
.kb-carousel {
  overflow: hidden;
  height: 100%;
  max-height: none;
}

/* Carousel Items */
.kb-carousel .carousel-item {
  transition:
    transform 0.6s ease-in-out 0s,
    opacity ease-in-out 0.6s;
}

.kb-carousel .carousel-item.active {
  transition:
    transform 0.6s ease-in-out 0s,
    opacity ease-in-out 0.6s;
}

/* Carousel Images */
.kb-carousel > .carousel-inner > .carousel-item > img,
.kb-carousel > .carousel-inner > .carousel-item > a > img {
  opacity: 0.8;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  animation: kenburns 20000ms linear 0s infinite alternate;
}

/* Hide captions during transitions */
.kb-carousel .carousel-item-next.carousel-item-start .carousel-caption,
.kb-carousel .carousel-item-prev.carousel-item-end .carousel-caption {
  z-index: 0;
  opacity: 0;
}

.social-media {
  position: absolute;
  bottom: 180px;
  left: 50px;
  transform: rotateZ(90deg);
  width: 100%;
  min-width: 275px;
  gap: 20px;
}

.icon-play::before {
  background-color: var(--heading-color-1);
  border-radius: 50%;
  border: 1px solid var(--heading-color-1);
}

.client-wrapper {
  padding: 30px;
}

.client-logos img {
  width: 100%;
  height: 73px;
  object-fit: contain;
  margin: 0px 10px;
  opacity: 0.6;
  transition: 0.3s;
}

.client-logos img:hover {
  opacity: 1;
}

.border-big {
  border-radius: 45px 45px 30px 30px;
  z-index: 9;
}

.bg-testimonial {
  position: absolute;
  top: 0;
  right: 0;
  padding: 120px;
  min-height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 25px;
}

.border-top-color > .b-container {
  border-top: 1px solid var(--heading-color-3);
}

.border-right-color {
  border-right: 1px solid var(--heading-color-1);
}

.project-desc {
  position: absolute;
  bottom: 0;
  right: 62px;
}

.project-desc-inner {
  display: flex;
  align-items: flex-end;
}

.desc-wrapper {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color: var(--secondary-color);
  padding: 30px;
}

.img-background {
  background-position: center center;
  background-size: cover;
}

.related-blog {
  border: none;
  background-color: var(--transparent-color-1);
}

.fancybox-image {
  border-radius: 25px;
}

.process h4 {
  max-width: 350px;
}

.contact-map {
  display: block;
  width: 100%;
  height: 400px;
  pointer-events: auto;
}

.content-career {
  max-width: 730px;
}

.tag-label {
  transition: 0.3s;
}

.tag-label:hover {
  background-color: var(--heading-color-3);
  color: var(--secondary-color) !important;
  cursor: pointer;
}

/* ---------------------------- */
/* Animations                   */
/* ---------------------------- */

/* Ken Burns Animation */
@keyframes kenburns {
  0% {
    transform: scale(1);
    transition: transform 20000ms linear 0s;
  }

  100% {
    transform: scale(1.4);
    transition: transform 20000ms linear 0s;
  }
}

@keyframes button-ripple {
  70% {
    -webkit-box-shadow: 0 0 0 var(--glow-size, 34px) var(--heading-color-1);
    box-shadow: 0 0 0 var(--glow-size, 34px) var(--heading-color-1);
    opacity: 0;
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 var(--heading-color-1);
    box-shadow: 0 0 0 0 var(--heading-color-1);
    opacity: 0;
  }
}

.radar-animate::after,
.radar-animate::before {
  content: " ";
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 currentColor;
  box-shadow: 0 0 0 0 currentColor;
  -webkit-animation: button-ripple 3s infinite;
  animation: button-ripple 3s infinite;
  opacity: 0.6;
  z-index: -1;
}

.radar-animate::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.radar-animate::after {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.fade.fade-right {
  opacity: 0;
  transform: translateX(20vw);
  transition:
    opacity 0.3s ease,
    transform 0.8s ease;
}

.fade.fade-right.show {
  opacity: 1;
  transform: translateX(0vw);
}

@media (prefers-reduced-motion: reduce) {
  .fade.fade-right {
    transition: none;
  }
}

/* ---------------------------- */
/* Navs and Tabs                */
/* ---------------------------- */
.nav-link {
  font-size: var(--sm-text-base);
  font-weight: 500;
  color: var(--secondary-color);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--text-color-1) !important;
}

.nav-link.active {
  color: var(--heading-color-1) !important;
}

.nav-link.dropdown-toggle:hover,
.nav-link.dropdown-toggle:focus,
.nav-link.dropdown-toggle.show {
  color: var(--accent-color) !important;
}

.nav-link.dropdown-toggle::after {
  display: none;
}

.nav-link .bi-chevron-down {
  font-size: 12px;
  color: var(--heading-color-1);
}

.nav.nav-pills .nav-item {
  width: 100%;
  border-bottom: 1px solid var(--heading-color-2);
}

.navbar-toggler {
  background-color: var(--heading-color-2);
  border-radius: 10px;
  padding: 10px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2346ade2' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 25px;
  height: 25px;
}

.navbar-toggler:focus,
.btn-close:focus {
  box-shadow: none;
}

.dropdown-menu {
  background-color: white;
  border: none;
  border-radius: 15px;
  padding: 0;
  width: 220px;
}

.dropdown-item {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font);
  margin: 10px 0;
  transition: 0.3s;
}

.dropdown-item:hover,
.dropdown-item.active:hover,
.dropdown-item:focus {
  color: var(--heading-color-3) !important;
  background-color: transparent;
}

.dropdown-item.active {
  color: var(--heading-color-1) !important;
  background-color: transparent;
}

.nav-pills .nav-link {
  padding: 5px 0;
  font-size: var(--text-4xl);
  font-weight: 600;
  text-align: end;
}

.nav-pills .nav-link.active {
  background-color: transparent;
  color: var(--secondary-color);
}

.tab-content .service-box img {
  max-height: 500px;
  min-height: 500px;
}

.tab-content .service-box .bg-overlay-2 {
  border-radius: 16px;
}

.tab-content .service-wrap {
  transform: translateY(115px);
}

.tab-content > .active {
  display: flex;
  justify-content: flex-end;
}

/* ---------------------------- */
/* Breadcrumb                   */
/* ---------------------------- */
.breadcrumb {
  font-weight: 500;
  font-size: var(--text-xl);
  background-color: var(--secondary-color);
  padding: 5px 20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.breadcrumb .breadcrumb-item > a {
  color: var(--heading-color-2);
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--background-color) !important;
}

.breadcrumb-item a:hover {
  color: var(--primary-color) !important;
}

.breadcrumb-item.active {
  color: var(--primary-color) !important;
}

/* ---------------------------- */
/* Buttons                      */
/* ---------------------------- */
.btn-cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background-color: var(--heading-color-3);
  color: var(--accent-color);
  border: 1px solid var(--heading-color-3);
  padding: 5px;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  border-radius: 100px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-cta-primary:hover {
  color: var(--heading-color-1);
  transform: scale(0.95);
}

.btn-cta-primary:hover .btn-icon-primary {
  transform: rotate(360deg);
}

.btn-cta-primary .btn-text {
  padding: 10px;
}

.btn-cta-primary .btn-icon-primary {
  transform: rotate(320deg);
  transition: 0.3s;
}

.btn-cta-primary .btn-icon-primary:before {
  font-size: var(--button-icon-size);
  color: var(--heading-color-1);
}

.btn-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--transparent-1-color);
  color: var(--heading-color-3);
  border: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-cta-secondary .bi-arrow-right-short::before {
  font-size: var(--btn-icon-arrow);
}

.btn-cta-secondary:hover {
  color: var(--heading-color-2);
}

.btn-cta-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--heading-color-1);
  color: var(--heading-color-3);
  border: none;
  border-radius: 100px;
  font-weight: 500;
  font-size: var(--text-base);
  padding: 19px 20px;
  transition: 0.3s;
}

.btn-cta-form:hover {
  background-color: var(--heading-color-3);
  color: var(--accent-color);
}

.offcanvas-header .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2346ade2'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
  opacity: 1;
  background-color: var(--heading-color-2);
  border-radius: 10px;
  padding: 14px;
  margin-right: 0px;
}

.btn-icon {
  width: 15px;
  height: 15px;
  border: 1px solid var(--heading-color);
}

/* ---------------------------- */
/* Utilities                    */
/* ---------------------------- */

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color-2);
  opacity: 1;
  transition: all 0.3s ease;
}

.bg-overlay-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    180deg,
    var(--transparent-color-1) 0%,
    var(--overlay-color) 100%
  );
  z-index: 1;
  opacity: 0.8;
}

.bg-overlay-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    180deg,
    var(--transparent-color-1) 0%,
    var(--heading-color-3) 100%
  );
  z-index: 1;
  opacity: 0.9;
}

.bg-overlay-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: var(--heading-color-3);*/
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* Partner CTA (anasayfa): eşit genişlik, ikonlar sağda hizalı */
.partner-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 420px;
}

@media (min-width: 992px) {
  .partner-cta-stack {
    margin-left: auto;
  }
}

.partner-cta-stack .partner-cta-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.partner-cta-stack .partner-cta-btn .btn-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.partner-cta-stack .partner-cta-btn .btn-icon-primary {
  flex-shrink: 0;
}

.home-partner-cta-section {
  padding-top: 54px;
  padding-bottom: 72px;
  padding-left: 26px;
  padding-right: 26px;
  background-color: white;
}

.home-partner-cta-container {
  max-width: 1800px;
}

.home-partner-cta-panel {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.54fr);
  gap: 110px;
  align-items: center;
  overflow: hidden;
  border-radius: 28px;
  background-color: #ffffff;
  padding: 84px 104px 120px;
  box-shadow: 0 18px 62px rgba(42, 42, 42, 0.1);
}

.home-partner-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 18%, rgba(0, 96, 170, 0.1), transparent 24%),
    linear-gradient(150deg, rgba(255, 255, 255, 0) 43%, rgba(0, 96, 170, 0.06) 70%, rgba(0, 96, 170, 0.13) 100%);
  pointer-events: none;
}

.home-partner-cta-panel::after {
  content: "";
  position: absolute;
  left: -8%;
  right: 16%;
  bottom: -170px;
  height: 285px;
  border-radius: 50% 50% 0 0;
  background-color: var(--heading-color-3);
  transform: rotate(5deg);
  transform-origin: left bottom;
  pointer-events: none;
}

.home-partner-cta-copy,
.home-partner-cta-actions {
  position: relative;
  z-index: 1;
}

.home-partner-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  margin: 0 0 38px;
  color: var(--heading-color-3);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-partner-cta-kicker::before {
  content: "";
  width: 52px;
  height: 3px;
  background-color: var(--heading-color-3);
}

.home-partner-cta-title {
  max-width: 820px;
  color: #13202d;
  font-size: clamp(54px, 5.3vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.home-partner-cta-title span {
  color: var(--heading-color-3);
}

.home-partner-cta-text {
  max-width: 640px;
  margin-top: 30px;
  color: #6b7280;
  font-size: 25px;
  line-height: 1.6;
}

.home-partner-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: center;
}

.home-partner-cta-btn {
  min-height: 82px;
  width: 100%;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 62px;
  gap: 18px;
  align-items: center;
  justify-content: stretch;
  border-radius: 999px;
  background-color: var(--heading-color-3);
  color: #ffffff;
  border-color: transparent;
  padding: 8px 10px 8px 14px;
  box-shadow: 0 10px 24px rgba(0, 96, 170, 0.24);
  transform: none;
  transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.home-partner-cta-btn:hover {
  transform: translateY(-4px);
  background-color: #222222;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 96, 170, 0.3);
}

.home-partner-cta-leading {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 27px;
}

.home-partner-cta-btn .btn-text {
  padding: 0;
  color: #ffffff;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.home-partner-cta-btn .btn-icon-primary {
  justify-self: end;
}

.bg-overlay-5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.bg-overlay-6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--heading-color-3);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.object-cover {
  object-fit: cover;
  object-position: center;
}

.spacer-top-left {
  width: 30px;
  height: 30px;
  border-radius: 10px 0px 0px 0px;
  box-shadow: -10px -10px 0px 0px var(--heading-color-3);
}

.spacer-top-left-25 {
  width: 50px;
  height: 50px;
  border-radius: 25px 0px 0px 0px;
  box-shadow: -10px -10px 0px 0px var(--secondary-color);
}

.spacer-top-right-25 {
  width: 50px;
  height: 50px;
  border-radius: 0px 25px 0px 0px;
  box-shadow: 10px -10px 0px 0px var(--secondary-color);
}

.spacer-special-left {
  margin-left: -12px;
  margin-top: 23px;
}

.spacer-special-right {
  margin-right: -12px;
  margin-top: 23px;
}

.spacer-top-left-25 {
  width: 50px;
  height: 50px;
  border-radius: 25px 0px 0px 0px;
  box-shadow: -10px -10px 0px 0px var(--secondary-color);
}

.spacer-bottom-right {
  width: 40px;
  height: 40px;
  border-radius: 0px 0px 25px 0px;
  box-shadow: 10px 10px 0px 0px var(--heading-color-3);
}

.spacer-bottom-left {
  width: 40px;
  height: 40px;
  border-radius: 0px 0px 0px 25px;
  box-shadow: -10px 10px 0px 0px var(--heading-color-3);
}

.spacer-bottom-left-50 {
  width: 50px;
  height: 50px;
  border-radius: 0px 0px 0px 25px;
  box-shadow: -10px 10px 0px 0px var(--heading-color-3);
}

.spacer-bottom-right-40 {
  width: 40px;
  height: 40px;
  border-radius: 0px 0px 25px 0px;
  box-shadow: 10px 10px 0px 0px var(--heading-color-3);
}

.spacer-bottom-left-30 {
  width: 30px;
  height: 30px;
  border-radius: 0px 0px 0px 15px;
  box-shadow: -10px 10px 0px 0px var(--secondary-color);
}

.spacer-bottom-right-30 {
  width: 30px;
  height: 30px;
  border-radius: 0px 0px 15px 0px;
  box-shadow: 10px 10px 0px 0px var(--secondary-color);
}

.spacer-bottom-right-50 {
  width: 50px;
  height: 50px;
  border-radius: 0px 0px 25px 0px;
  box-shadow: 10px 10px 0px 0px var(--secondary-color);
}

.spacer-bottom-left-50-light {
  width: 50px;
  height: 50px;
  border-radius: 0px 0px 0px 25px;
  box-shadow: -10px 10px 0px 0px var(--secondary-color);
}

.spacer-80 {
  width: 100%;
  height: 80px;
}

.card-cta {
  padding: 50px;
}

.service-detail-cta {
  width: 100%;
  min-height: 320px;
  flex: 0 0 auto;
}

.package-detail-premium {
  background: white;
}

.package-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 48px;
}

.package-detail-content > .package-detail-hero {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.package-detail-content > .package-detail-hero .package-detail-media {
  order: 1;
}

.package-detail-content > .package-detail-hero .package-detail-summary {
  order: 2;
}

.package-detail-summary,
.package-detail-media,
.package-picker,
.package-detail-content {
  border-radius: 20px;
  background: var(--accent-color);
}

.package-detail-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.package-detail-label {
  align-self: flex-start;
  border: 1px solid rgba(70, 173, 226, 0.32);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--heading-color-1);
  font-size: 13px;
  font-weight: 800;
}

.package-detail-summary h2 {
  margin: 0;
  color: var(--heading-color-3);
  font-size: 50px;
  line-height: 1.08;
}

.package-detail-summary p {
  margin: 0;
  color: var(--text-color);
}

.package-price-panel {
  margin-top: 10px;
  padding: 22px;
  border-radius: 8px;
  background: var(--heading-color-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.package-price-panel > div > span {
  display: block;
  color: white;
  font-size: 14px;
  margin-bottom: 8px;
}

.package-price-panel strong {
  color: var(--secondary-color);
  font-size: 44px;
  line-height: 1;
}

.package-detail-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--heading-color-3);
}

.package-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.package-media-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(260px, calc(100% - 48px));
  padding: 22px;
  border-radius: 8px;
  background: #be1a2a;
  backdrop-filter: blur(10px);
}

.package-media-badge strong {
  display: block;
  color: var(--heading-color-1);
  font-size: 42px;
  line-height: 1;
}

.package-media-badge span {
  display: block;
  margin-top: 8px;
  color: var(--secondary-color);
  font-weight: 700;
}

.package-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.package-picker {
  position: sticky;
  padding: 0;
  height: auto;
  align-self: start;
  overflow: hidden;
}

.package-picker h3 {
  margin: 0;
  padding: 26px 26px 20px;
  color: var(--primary-color);
  font-size: 28px;
  line-height: 1.1;
  background-color: #ffffff;
  border: 1px solid rgba(42, 42, 42, 0.12);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.package-picker a {
  min-height: 82px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(42, 42, 42, 0.12);
  border-bottom: 0;
  background-color: #ffffff;
  color: var(--primary-color);
  transition: background-color 0.24s ease, color 0.24s ease, padding-left 0.24s ease;
}

.package-picker a:last-child {
  border-bottom: 1px solid rgba(42, 42, 42, 0.12);
  border-radius: 0 0 14px 14px;
}

.package-picker a span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f5f5f7;
  color: rgba(42, 42, 42, 0.54);
  font-weight: 800;
  font-size: 12px;
}

.package-picker a strong {
  line-height: 1.25;
  font-size: 15px;
  font-weight: 700;
}

.package-picker .btn-icon-primary {
  width: 34px;
  height: 34px;
  justify-self: end;
  transform: rotate(320deg);
  color: var(--heading-color-3);
  transition: 0.3s;
}

.package-picker .btn-icon-primary:before {
  font-size: 34px;
}

.package-picker a:hover,
.package-picker a.active {
  color: var(--heading-color-3);
  background-color: #fffafa;
  padding-left: 24px;
}

.package-picker a.active span {
  background-color: var(--heading-color-3);
  color: var(--secondary-color);
}

.package-picker a:hover .btn-icon-primary,
.package-picker a.active .btn-icon-primary {
  transform: rotate(360deg);
}

.package-detail-content {
  padding: 42px;
  padding-top: 0px;
  height: auto;
}

/* ==== Package detail – rich content sections ==== */
.pkg-section-title {
  margin: 0 0 4px;
  color: var(--heading-color-3);
  font-weight: 700;
}
.pkg-section-title + .pkg-section-lead {
  margin: 0 0 8px;
  color: var(--text-color);
  opacity: .85;
}

/* Coverage cards: light surface, accent rail + numbered badge */
.pkg-coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pkg-coverage-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(4, 26, 47, 0.08);
  border-radius: 16px;
  padding: 24px 26px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(4, 26, 47, 0.04);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.pkg-coverage-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 4px;
  background: var(--heading-color-1);
  opacity: .85;
}
.pkg-coverage-card:hover {
  box-shadow: 0 12px 28px rgba(4, 26, 47, 0.08);
  border-color: rgba(4, 26, 47, 0.14);
  transform: translateY(-2px);
}
.pkg-coverage-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pkg-coverage-num {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  background: rgba(4, 26, 47, 0.06);
  color: var(--heading-color-1);
  letter-spacing: .5px;
}
.pkg-coverage-card h4 {
  margin: 0;
  color: var(--heading-color-3);
  font-size: 1.125rem;
  line-height: 1.3;
}
.pkg-coverage-card p {
  margin: 0;
  color: var(--text-color);
  opacity: .85;
}
.pkg-coverage-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 18px;
}
.pkg-coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--heading-color-3);
  font-weight: 500;
  font-size: .95rem;
}
.pkg-coverage-list li i {
  color: var(--heading-color-1);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Vehicle list pills */
.pkg-vehicle-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pkg-vehicle-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f4f7fa;
  border: 1px solid rgba(4, 26, 47, 0.08);
  color: var(--heading-color-3);
  font-weight: 600;
  font-size: .95rem;
}
.pkg-vehicle-list li i {
  color: var(--heading-color-1);
  font-size: .65rem;
}

/* Audience grid: airy white cards w/ icon chip */
.pkg-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.pkg-audience-card {
  background: #ffffff;
  border: 1px solid rgba(4, 26, 47, 0.08);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.pkg-audience-card:hover {
  box-shadow: 0 10px 26px rgba(4, 26, 47, 0.07);
  transform: translateY(-2px);
}
.pkg-audience-card .pkg-icon-chip {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 26, 47, 0.06);
  color: var(--heading-color-1);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.pkg-audience-card h5 {
  margin: 0;
  color: var(--heading-color-3);
  font-size: 1.05rem;
}
.pkg-audience-card p {
  margin: 0;
  color: var(--text-color);
  opacity: .85;
  font-size: .95rem;
  line-height: 1.55;
}

/* Reasons – top accent border, centered icon */
.pkg-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.pkg-reason-card {
  background: #ffffff;
  border: 1px solid rgba(4, 26, 47, 0.08);
  border-top: 3px solid var(--heading-color-1);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow .25s ease, transform .25s ease;
}
.pkg-reason-card:hover {
  box-shadow: 0 12px 28px rgba(4, 26, 47, 0.08);
  transform: translateY(-3px);
}
.pkg-reason-card .pkg-reason-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(4, 26, 47, 0.06);
  color: var(--heading-color-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.pkg-reason-card h5 {
  margin: 0;
  color: var(--heading-color-3);
  font-size: 1.05rem;
  line-height: 1.3;
}
.pkg-reason-card p {
  margin: 0;
  color: var(--text-color);
  opacity: .85;
  font-size: .95rem;
  line-height: 1.55;
}

/* CTA banner – the single dark accent on the page */
.pkg-cta-band {
  background: linear-gradient(135deg, var(--heading-color-3) 0%, #062847 100%);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pkg-cta-band::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  right: -60px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 26, 47, 0) 30%, rgba(255,255,255,0.05) 70%, rgba(4,26,47,0) 100%);
  pointer-events: none;
}
.pkg-cta-band h3 {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
}
.pkg-cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) {
  .pkg-cta-band {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
  }
  .pkg-cta-band > .pkg-cta-text {
    flex: 1 1 auto;
  }
}

.package-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.package-section-head h3,
.package-check-list h3 {
  margin: 0;
  color: var(--heading-color-3);
}

.package-section-head p,
.package-info-band p {
  margin: 0;
  color: var(--text-color);
}

.package-limit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.package-limit-grid article {
  min-height: 170px;
  padding: 22px;
  border-radius: 8px;
  background: #f7fafc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.package-limit-grid i {
  color: var(--heading-color-1);
  font-size: 30px;
}

.package-limit-grid span {
  color: var(--text-color);
  font-weight: 700;
}

.package-limit-grid strong {
  color: var(--heading-color-3);
  font-size: 20px;
  line-height: 1.25;
}

.package-info-band {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(4, 26, 47, 0.12);
  border: 1px solid rgba(4, 26, 47, 0.12);
}

.package-info-band > div {
  background: var(--accent-color);
  padding: 26px;
}

.package-info-band h4 {
  color: var(--heading-color-3);
  margin-bottom: 10px;
}

.package-check-list {
  margin-top: 30px;
}

.package-check-list > div {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.package-check-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #f7fafc;
  color: var(--heading-color-3);
  font-weight: 700;
}

.package-check-list i {
  color: var(--heading-color-1);
}

.card-cta.btn-pdf .icon-pdf {
  position: absolute;
  left: 25px;
}

.card-cta.btn-pdf .btn-text {
  padding-left: 48px;
}

.card-cta.btn-pdf .btn-cta-primary {
  gap: 30px;
}

.service-sidebar-premium {
  position: relative;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(42, 42, 42, 0.12);
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: none;
}

.service-sidebar-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 28px 24px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.1);
}

.service-sidebar-head span {
  color: var(--heading-color-3);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-sidebar-head h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 28px;
  line-height: 1.12;
}

.service-sidebar-head p {
  margin: 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.6;
}

.service-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 10px;
}

.service-sidebar-group {
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 0;
  transition: background-color 0.24s ease;
  overflow: hidden;
}

.service-sidebar-group:hover,
.service-sidebar-group.active {
  background: #fffafa;
  transform: none;
}

.service-sidebar-main {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  width: 100%;
  color: var(--primary-color);
  padding: 12px 14px;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: var(--font);
}

.service-sidebar-main:not(.service-sidebar-toggle) {
  grid-template-columns: 34px minmax(0, 1fr);
}

.service-sidebar-main:hover {
  color: var(--heading-color-3);
}

.service-sidebar-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(190, 26, 42, 0.08);
  color: var(--heading-color-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: none;
}

.service-sidebar-main strong {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

.service-sidebar-chevron {
  color: rgba(42, 42, 42, 0.42);
  font-size: 13px;
  transition: transform 0.24s ease, color 0.24s ease;
}

.service-sidebar-toggle:not(.collapsed) .service-sidebar-chevron {
  color: var(--heading-color-3);
  transform: rotate(180deg);
}

.service-sidebar-toggle:not(.collapsed) {
  color: var(--heading-color-3);
}

.service-sidebar-group ul {
  margin: 0;
  padding: 0 14px 14px 58px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fffafa;
}

.service-sidebar-group li {
  list-style: none;
}

.service-sidebar-group li a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 0 7px 14px;
  line-height: 1.35;
}

.service-sidebar-group li a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(190, 26, 42, 0.42);
}

.service-sidebar-group li a:hover {
  color: var(--heading-color-3);
}

.service-sidebar-group li a[aria-current="page"] {
  color: var(--heading-color-3);
  font-weight: 800;
}

.service-sidebar-group li a[aria-current="page"]::before {
  background: var(--heading-color-3);
}

/* Custom AOS */
.from-right {
  transform: translate3d(50vw, 0, 0);
}

[data-aos="fade-left"].aos-animate {
  transform: translate3d(0, 0, 0);
}

.from-left {
  transform: translate3d(-50vw, 0, 0);
}

[data-aos="fade-right"].aos-animate {
  transform: translate3d(0, 0, 0);
}

.rounded-6 {
  border-radius: 25px;
}

.rounded-100 {
  border-radius: 100px;
}

.rotate-90 {
  transform: rotateZ(90deg);
}

.topbot-rounded-6 {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.padding-30 {
  padding: 30px;
}

.padding-50 {
  padding: 50px;
}

.fs-78 {
  font-size: 78px;
}

.ms-n15 {
  margin-left: -15px;
}

.gap-100 {
  gap: 100px 0px;
}

.size-55 {
  width: 55px;
  height: 55px;
}

.w-49 {
  width: 49%;
}

.w-51 {
  width: 51% !important;
}

.mb-n90 {
  margin-bottom: -90px;
}

.max-width-370 {
  max-width: 370px;
}

.border-color {
  border: 5px solid var(--heading-color-1);
}

.text-faqs {
  display: flex;
  flex-flow: row wrap;
  position: absolute;
  top: 0;
  left: 12px;
}

.text-faqs .wrapper-text {
  width: 50%;
  padding-bottom: 10px;
  padding-right: 10px;
  background-color: var(--secondary-color);
  border-bottom-right-radius: 25px;
}

.text-faqs h3 {
  border-radius: 25px;
  padding: 30px;
}

.text-faqs .spacer-top-left {
  border-radius: 25px 0px 0px 0px;
  box-shadow: -10px -10px 0px 0px var(--secondary-color);
}

[data-fancybox="img-lightbox"] {
  cursor: zoom-in;
}

/* ---------------------------- */
/* Section                      */
/* ---------------------------- */

.home-hero {
  padding: 170px 8px 0px 8px;
}

section.hero-banner {
  padding-bottom: 0px;
  background-position: center center;
}

.package-detail-banner {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding-top: 210px;
  padding-bottom: 78px;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.package-detail-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;

}

.package-detail-banner > .b-container {
  width: 100%;
}

.package-detail-banner-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.package-detail-banner-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.package-detail-banner-kicker {
  margin-bottom: 14px !important;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.package-detail-banner h1 {
  max-width: 560px;
  color: #ffffff;
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.package-detail-banner-desc {
  max-width: 520px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 600;
}

.package-detail-banner-price {
  width: min(470px, 100%);
  min-height: 116px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
  padding: 18px 20px 18px 24px;
  border-radius: 8px;
  background-color: #ffffff;
}

.package-detail-banner-price > div,
.package-detail-banner-price .package-detail-banner-btn {
  align-self: center;
}

.package-detail-banner-price span {
  display: block;
  margin-bottom: 10px;
  color: var(--heading-color-3);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.package-detail-banner-price strong {
  display: block;
  color: var(--heading-color-3);
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
}

.package-detail-banner-btn {
  min-width: 164px;
  color: #ffffff;
  justify-content: space-between;
  background-color: var(--heading-color-3);
  border-color: transparent;
}

.package-detail-banner-btn .btn-text {
  color: #ffffff;
  margin-bottom: 0;
}

.package-detail-banner-btn:hover {
  color: #ffffff;
}

section.about-us .bg-overlay-6 {
  border-radius: 100px;
}

.contact-section-premium {
  background: #ffffff;
}

.contact-premium-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 36px;
  align-items: start;
}

.contact-premium-info {
  padding: 10px 18px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-premium-info h6 {
  color: var(--heading-color-2) !important;
  font-size: 15px;
  font-weight: 700;
}

.contact-premium-info h2 {
  max-width: 560px;
  color: var(--primary-color) !important;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-premium-info p {
  max-width: 560px;
  margin: 0;
  color: var(--text-color);
  line-height: 1.75;
}

.contact-premium-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 14px;
  background: var(--accent-color);
}

.contact-premium-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  background: var(--accent-color);
  color: var(--primary-color);
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
}

.contact-premium-item:last-child {
  border-bottom: 0;
}

.contact-premium-item i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(190, 26, 42, 0.08);
  color: var(--heading-color-3);
  font-size: 20px;
}

.contact-premium-item span {
  display: block;
  color: var(--text-color);
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-premium-item strong {
  display: block;
  color: var(--primary-color);
  line-height: 1.35;
}

a.contact-premium-item:hover {
  color: var(--primary-color);
  background: #fbfbfc;
}

.contact-premium-form {
  position: relative;
  padding: 44px;
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 16px;
  background: #f5f5f7;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

.contact-premium-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 44px;
  width: 92px;
  height: 4px;
  background: var(--heading-color-3);
}

.contact-form-head {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.1);
}

.contact-form-head h3 {
  margin: 0 0 8px;
  color: var(--primary-color);
  font-size: clamp(32px, 3vw, 44px);
  letter-spacing: 0;
}

.contact-form-head p {
  margin: 0;
  color: var(--text-color);
}

.contact-premium-form .form-label {
  color: var(--primary-color);
  font-weight: 700;
}

.contact-premium-form .form-control {
  min-height: 52px;
  background: var(--accent-color);
  color: var(--primary-color);
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 8px;
}

.contact-premium-form textarea.form-control {
  min-height: 154px;
}

.contact-premium-form .form-control::placeholder {
  color: rgba(42, 42, 42, 0.45);
}

.contact-premium-form .form-control:focus {
  background: var(--accent-color);
  color: var(--primary-color);
  border-color: rgba(190, 26, 42, 0.36);
  box-shadow: none;
}

.quote-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.quote-shell {
  border-radius: 8px;
  background: var(--accent-color);
  overflow: hidden;
}

.quote-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  background: #eef2f6;
}

.quote-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.quote-title > i {
  color: #ff7900;
  font-size: 30px;
}

.quote-title h2 {
  margin: 0;
  color: var(--heading-color-3);
  font-size: 30px;
}

.quote-title p {
  margin: 4px 0 0;
  color: var(--text-color);
}

.quote-dealer-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 24px;
  border-radius: 999px;
  background: #e7272f;
  color: var(--accent-color);
  font-weight: 700;
}

.quote-dealer-link:hover {
  color: var(--accent-color);
  background: var(--heading-color-3);
}

.quote-form {
  padding: 34px;
}

.quote-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-bottom: 28px;
}

.quote-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color-3);
  font-weight: 700;
  cursor: pointer;
}

.quote-switch input {
  position: absolute;
  opacity: 0;
}

.quote-switch span {
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background: #cdd5dc;
  position: relative;
  transition: 0.25s;
}

.quote-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-color);
  transition: 0.25s;
}

.quote-switch input:checked + span {
  background: var(--heading-color-1);
}

.quote-switch input:checked + span::after {
  transform: translateX(14px);
}

.quote-form .form-label {
  color: var(--heading-color-3);
  font-weight: 700;
}

.quote-form .form-control,
.quote-form .form-select {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background-color: #f2f5f8;
  color: var(--heading-color-3);
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  box-shadow: none;
  background-color: #eaf1f6;
}

.quote-consents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 24px;
  border-radius: 8px;
  background: #f7fafc;
  margin-top: 4px;
}

.quote-consents label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color-3);
  font-weight: 700;
}

.quote-consents input {
  width: 18px;
  height: 18px;
}

.quote-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.quote-submit-row p {
  margin: 0;
  color: var(--text-color);
}

.quote-premium-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.quote-premium-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.quote-premium-intro p {
  margin: 0;
  color: var(--text-color);
  line-height: 1.8;
}

.quote-premium-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.quote-premium-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-step-card,
.quote-side-card {
  border-radius: 8px;
  background: var(--accent-color);
}

.quote-step-card {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.quote-step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--heading-color-1);
}

.quote-step-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 28px;
}

.quote-step-head > span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--heading-color-3);
  color: var(--heading-color-1);
  font-weight: 800;
}

.quote-step-card .form-label {
  color: var(--heading-color-3);
  font-weight: 800;
  margin-bottom: 10px;
}

.quote-step-card .form-control,
.quote-step-card .form-select {
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background-color: #f2f5f7;
  color: var(--heading-color-3);
  font-weight: 600;
}

.quote-step-card .form-control::placeholder {
  color: #9aa7b2;
}

.quote-step-card .form-control:focus,
.quote-step-card .form-select:focus {
  background-color: #eef3f6;
  box-shadow: none;
}

.quote-step-head h3,
.quote-side-card h3 {
  margin: 0;
  color: var(--heading-color-3);
}

.quote-step-head p,
.quote-side-card p {
  margin: 6px 0 0;
  color: var(--text-color);
}

.quote-premium-side {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: stretch;
}

.quote-side-card {
  padding: 32px;
  background: var(--heading-color-3);
  overflow: hidden;
  position: relative;
}

.quote-side-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  background: rgba(255, 121, 0, 0.14);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.quote-bottom-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.quote-bottom-card::before {
  display: none;
}

.quote-side-kicker {
  display: block;
  color: var(--heading-color-1);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.quote-side-card h3,
.quote-side-card .form-label {
  color: var(--secondary-color);
}

.quote-side-card p {
  color: var(--text-color-1);
  margin: 18px 0 28px;
}

.quote-package-select {
  margin-top: 0;
  padding: 0;
  border-radius: 8px;
  background: transparent;
}

.quote-package-select > span {
  display: block;
  color: var(--heading-color-1);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.quote-side-card .form-select {
  border: 0;
  border-radius: 8px;
  min-height: 54px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
}

.quote-side-card .form-select option {
  color: var(--heading-color-3);
}

.quote-side-card .form-select:focus {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.16);
}

.quote-side-card .btn-cta-primary {
  width: auto;
  justify-content: space-between;
  margin-top: 0;
  white-space: nowrap;
}

.quote-package-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 8px;
  background: var(--accent-color);
  color: var(--heading-color-3);
  font-weight: 800;
}

.quote-bottom-link {
  min-width: 250px;
}

.quote-package-link .btn-icon-primary {
  width: var(--md-button-icon-size);
  height: var(--md-button-icon-size);
  color: var(--heading-color-1);
  transform: rotate(320deg);
  transition: 0.3s;
}

.quote-package-link .btn-icon-primary:before {
  font-size: var(--md-button-icon-size);
}

.quote-package-link:hover {
  color: var(--heading-color-3);
}

.quote-package-link:hover .btn-icon-primary {
  transform: rotate(360deg);
}

.dealer-application-section {
  background: #ffffff;
}

.dealer-application-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: stretch;
}

.dealer-application-intro {
  border-radius: 16px;
  background: #f5f5f7;
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.dealer-application-intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 44px;
  width: 92px;
  height: 4px;
  background: var(--heading-color-3);
  clip-path: none;
}

.dealer-application-intro > span,
.dealer-form-head span {
  display: block;
  color: var(--heading-color-2);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.dealer-application-intro h2 {
  color: var(--primary-color);
  margin-bottom: 18px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.dealer-application-intro p {
  color: var(--text-color);
  margin-bottom: 34px;
  line-height: 1.75;
}

.dealer-application-points {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.dealer-application-points > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: center;
  padding: 18px;
  border-radius: 12px;
  background: var(--accent-color);
}

.dealer-application-points i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  background: rgba(190, 26, 42, 0.08);
  color: var(--heading-color-3);
  font-size: 19px;
}

.dealer-application-points strong {
  color: var(--primary-color);
  font-size: 17px;
}

.dealer-application-points small {
  color: var(--text-color);
  line-height: 1.5;
}

.dealer-application-form {
  border-radius: 16px;
  background: var(--accent-color);
  padding: 44px;
}

.dealer-form-head {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.1);
}

.dealer-form-head h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: clamp(30px, 2.7vw, 40px);
  letter-spacing: 0;
}

.dealer-application-form .form-label {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.dealer-application-form .form-control {
  min-height: 56px;
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 8px;
  background-color: #f5f5f7;
  color: var(--primary-color);
  font-weight: 500;
}

.dealer-application-form textarea.form-control {
  min-height: 140px;
}

.dealer-application-form .form-control::placeholder {
  color: rgba(42, 42, 42, 0.42);
}

.dealer-application-form .form-control:focus {
  background-color: var(--accent-color);
  border-color: rgba(190, 26, 42, 0.36);
  box-shadow: none;
}

.supplier-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.supplier-type-option {
  position: relative;
  cursor: pointer;
}

.supplier-type-option input {
  position: absolute;
  opacity: 0;
}

.supplier-type-option span {
  min-height: 58px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(42, 42, 42, 0.1);
  background: #f5f5f7;
  color: var(--primary-color);
  font-weight: 700;
  transition: 0.25s;
}

.supplier-type-option input:checked + span {
  border-color: var(--heading-color-2);
  background: var(--heading-color-2);
  color: var(--accent-color);
}

.legal-content-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

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

.legal-content-card {
  border-radius: 8px;
  background: var(--accent-color);
  padding: 46px;
}

.legal-content-card h2 {
  color: var(--heading-color-3);
  margin-bottom: 20px;
}

.legal-content-card p {
  color: var(--text-color);
  line-height: 1.85;
  margin-bottom: 18px;
}

.legal-content-card p:last-child {
  margin-bottom: 0;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

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

.footer-credit a {
  font-weight: 800;
}

.footer-contact-row {
  margin-top: 10px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-row .row {
  align-items: stretch;
  row-gap: 22px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 2px;
  align-items: center;
  height: 100%;
  min-height: 78px;
  padding: 0 18px 0 0;
  color: var(--text-color-1);
}

.footer-contact-item i {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.09);
  color: var(--heading-color-1);
  font-size: 22px;
  grid-row: 1 / span 2;
  align-self: center;
}

.footer-contact-item span {
  display: block;
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  grid-column: 2;
}

.footer-contact-item strong {
  display: block;
  color: var(--text-color-1);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  grid-column: 2;
  word-break: normal;
  overflow-wrap: normal;
}

.footer-contact-item:hover,
.footer-contact-item:hover strong {
  color: var(--secondary-color);
}

.footer-contact-row .col-xl-3 .footer-contact-item strong {
  white-space: nowrap;
}

.footer-contact-row .col-xl-6 .footer-contact-item strong {
  max-width: 620px;
}

section.our-partners {
  position: relative;
  z-index: 4;
  margin-bottom: 0;
  padding: 0 20px;
  overflow: hidden;
  background-color: #efefef;
}

section.our-partners .row {
  margin: 0;
}

section.our-partners .spacer-top-right-25,
section.our-partners .spacer-top-left-25 {
  display: none;
}

section.our-partners .client-wrapper {
  width: min(1120px, calc(100vw - 40px));
  padding: 26px 46px;
  border-radius: 20px;
  background-color: #ffffff !important;
}

section.our-partners .client-logos {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(130px, 1fr);
  align-items: center;
  justify-content: center;
  gap: 34px;
}

section.our-partners .client-logos a,
section.our-partners .client-logos img {
  display: block;
}

section.our-partners .client-logos img {
  width: 100%;
  height: 46px;
  object-fit: contain;
  margin: 0;
  opacity: 1;
  transition: transform 0.25s ease;
  filter: brightness(0.5);
}

section.our-partners .client-logos a:hover img,
section.our-partners .client-logos img:hover {
  transform: translateY(-2px);
}

section.who,
section.about-us {
  padding-bottom: 110px;
}

.about-performance-section {
  padding-top: 0;
  padding-bottom: 100px;
  background-color: var(--secondary-color);
}

.about-performance-panel {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
  padding: 56px;
  border-radius: 30px;
}



.about-performance-panel .row {
  position: relative;
  z-index: 1;
}

.about-performance-panel h6 {
  font-size: 15px;
  line-height: 1.35;
}

.about-performance-panel h2 {
  max-width: 460px;
  font-size: 42px;
  line-height: 1.08;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background-color: #343434;
  border-radius: 30px;
}

.about-stat-card {
  position: relative;
  min-height: 214px;
  padding: 34px 28px 30px;
  background-color: #343434;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: background-color 0.25s ease;
  border-radius: 30px;
}

.about-stat-card:hover {
  background-color: #3b3b3b;
}

.about-stat-card::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  width: 3px;
  height: 52px;
  background-color: var(--heading-color-3);
}



.about-stat-card strong {
  color: var(--secondary-color);
  font-size: 58px;
  line-height: 1;
  font-weight: 700;
}

.about-stat-card span {
  color: var(--heading-color-1);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
}

.about-stat-card p {
  margin: 0;
  color: var(--text-color-1);
  font-size: 15px;
  line-height: 1.6;
}

.about-performance-section .text-heading-color-1 {
  color: var(--heading-color-1) !important;
}

.about-performance-section .text-secondary-color {
  color: var(--secondary-color) !important;
}

.about-identity-media {
  position: relative;
  min-height: 560px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--heading-color-3);
}

.about-identity-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.about-identity-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 220px;
  border-radius: 18px;
  background: var(--heading-color-3);
  padding: 22px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.about-identity-badge span {
  display: block;
  color: var(--heading-color-1);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.about-identity-badge p {
  margin: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

.about-identity-content {
  border: 1px solid rgba(15, 43, 70, 0.1);
  border-radius: 22px;
  background: #fff;
  padding: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-identity-content p {
  color: var(--text-color);
}

.about-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.about-check-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(15, 43, 70, 0.1);
  border-radius: 14px;
  padding: 14px;
  color: var(--primary-color);
  font-weight: 700;
}

.about-check-grid i {
  color: var(--heading-color-2);
  font-size: 21px;
}

.about-values-section {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 110px;
}

.about-values-shell {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.about-values-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 72px;
  align-items: end;
  padding-bottom: 18px;
}

.about-values-head h2 {
  max-width: 760px;
  font-size: 52px;
  line-height: 1.05;
}

.about-values-intro {
  max-width: 520px;
  justify-self: end;
}

.about-values-section .text-color-1 {
  color: rgba(245, 245, 247, 0.82) !important;
  line-height: 1.75;
}

.about-values-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-value-card {
  min-height: 246px;
  border-radius: 18px;
  background-color: #f5f5f7;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.28s ease, background-color 0.28s ease;
}

.about-value-card:hover {
  transform: translateY(-5px);
  background-color: #ffffff;
}

.about-value-card i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(190, 26, 42, 0.1);
  color: var(--heading-color-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  transition: background-color 0.28s ease, color 0.28s ease;
}

.about-value-card:hover i {
  background-color: var(--heading-color-3);
  color: var(--secondary-color);
}

.about-value-card h4 {
  margin: 0;
  color: var(--primary-color);
  font-size: 23px;
  line-height: 1.18;
}

.about-value-card p {
  margin: 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.68;
}

.about-mission-card {
  min-height: 380px;
  border-radius: 26px;
  padding: 50px;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.about-mission-card.dark {
  background-color: var(--primary-color);
}

.about-mission-card span {
  width: max-content;
  height: auto;
  border-radius: 999px;
  background-color: rgba(190, 26, 42, 0.1);
  color: var(--heading-color-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.about-mission-card h3 {
  margin: 0;
  color: var(--heading-color-3);
  font-size: 42px;
  line-height: 1.05;
}

.about-mission-card p {
  margin: 0;
  color: var(--text-color);
  max-width: 640px;
  line-height: 1.75;
}

.about-mission-card.dark h3 {
  color: var(--secondary-color);
}

.about-mission-card.dark span {
  background-color: var(--heading-color-3);
  color: var(--secondary-color);
}

.about-mission-card.dark p {
  color: var(--text-color-1);
}

.old-about-mission-section {
  display: none;
}

section.achievements {
  margin-bottom: -101px;
  overflow: hidden;
}

section.achievements .spacer-special-right {
  margin-right: 0px;
}

section.achievements .spacer-special-left {
  margin-left: 0px;
}

section.services {
  padding-top: 92px;
}

section.expertise {
  padding-top: 220px;
}

.testimonials {
  padding-bottom: 0px;
}

.section.no-pad-bot {
  padding-bottom: 0px;
}

.section.our-blog .blog-content h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: var(--secondary-color);
}

/* ---------------------------- */
/* Boxes and Cards              */
/* ---------------------------- */

.why-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px;
  border: 1px solid var(--heading-color-1);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.why-box:hover .why-wrap {
  transform: translateY(0px);
}

.why-box.special .why-wrap {
  transform: translateY(0px);
}

.why-box img {
  width: 50px;
  height: 50px;
}

.why-content {
  overflow: hidden;
}

.why-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(60px);
  transition: 0.6s;
}

.home-why-section {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.home-why-section::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 42px;
  width: 220px;
  height: 160px;
  opacity: 0.32;
  background-image: radial-gradient(rgba(42, 42, 42, 0.42) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
}

.home-why-section::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -260px;
  width: 760px;
  height: 760px;
  border: 2px solid rgba(190, 26, 42, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.home-why-shell {
  position: relative;
  z-index: 1;
}

.home-why-head {
  max-width: 980px;
  margin-bottom: 10px;
}

.home-why-kicker {
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  color: var(--heading-color-3);
  font-size: 18px;
  font-weight: 800;
}

.home-why-kicker::after {
  content: "";
  width: 46px;
  height: 3px;
  background-color: var(--heading-color-3);
}

.home-why-title {
  max-width: 1300px;
  margin-top: 22px;
  color: #1f1f21;
  font-size: clamp(48px, 5.8vw, 86px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-why-title span {
  color: var(--heading-color-3);
}

.home-why-desc {
  max-width: 680px;
  color: #2f2f31;
  font-size: 20px;
  line-height: 1.62;
  padding-bottom: 30px;
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.home-why-grid .home-why-card {
  min-height: 360px;
  gap: 36px;
  justify-content: flex-start;
  border-radius: 32px;
  padding: 38px 42px 40px;
  background-color: #ffffff;
  border: 1px solid rgba(42, 42, 42, 0.08);
  box-shadow: 0 24px 70px rgba(42, 42, 42, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

.home-why-grid .home-why-card-default {
  background-color: #ffffff;
  border-color: rgba(42, 42, 42, 0.08);
  box-shadow: 0 24px 70px rgba(42, 42, 42, 0.08);
}

.home-why-grid .home-why-card-dark {
  background-color: #ffffff;
  border-color: rgba(42, 42, 42, 0.08);
  box-shadow: 0 24px 70px rgba(42, 42, 42, 0.08);
}

.home-why-grid .home-why-card:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
  transform: translateY(-8px);
}

.home-why-grid .home-why-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  padding: 16px;
  background-color: #ffffff;
  box-shadow: 0 18px 34px rgba(42, 42, 42, 0.14);
}

.home-why-grid .home-why-card-default img {
  background-color: #ffffff;
}

.home-why-grid .home-why-card-dark img {
  background-color: #ffffff;
  box-shadow: 0 18px 34px rgba(42, 42, 42, 0.14);
}

.home-why-grid .why-content {
  overflow: visible;
}

.home-why-grid .why-wrap {
  gap: 24px;
  transform: none;
}

.home-why-grid .why-wrap h4 {
  position: relative;
  margin: 0;
  padding-bottom: 28px;
  color: #242426;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  transition: color 0.24s ease;
}

.home-why-grid .why-wrap h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background-color: var(--heading-color-3);
  transition: background-color 0.24s ease;
}

.home-why-grid .why-wrap p {
  max-width: 330px;
  margin: 0;
  color: #333335;
  font-size: 20px;
  line-height: 1.58;
  transition: color 0.24s ease;
}

.home-why-grid .home-why-card-dark .why-wrap h4,
.home-why-grid .home-why-card-dark .why-wrap p {
  color: #242426;
}

.home-why-grid .home-why-card:hover .why-wrap h4,
.home-why-grid .home-why-card:hover .why-wrap p {
  color: #ffffff;
}

.home-why-grid .home-why-card:hover .why-wrap h4::after {
  background-color: #ffffff;
}

.service-box {
  position: relative;
  background-color: var(--secondary-color);
  width: 100%;
  height: 100%;
  min-height: 515px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.team-box {
  position: relative;
  background-color: var(--secondary-color);
  width: 100%;
  height: 100%;
  max-height: 500px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.service-box > img,
.team-box > img {
  border-radius: 25px;
  object-fit: cover;
  object-position: center;
}

.team-box > img {
  object-position: top center;
}

.service-box:hover .service-wrap {
  transform: translateY(0);
}

.service-box .bg-overlay-2,
.team-box .bg-overlay-2 {
  border-radius: 25px;
}

.service-content {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 40px;
  width: 100%;
  height: 100%;
  min-height: 440px;
  z-index: 2;
}

.service-content h4 {
  color: var(--secondary-color);
}

.service-content p {
  color: var(--text-color-1);
}

.service-info {
  overflow: hidden;
}

.service-wrap {
  transform: translateY(40px);
  transition: all 0.3s ease;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: var(--heading-color-1);
}

.icon-service,
.team-social {
  display: flex;
  flex-flow: row wrap;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.icon-service .icon-inner {
  background-color: var(--heading-color-3);
  padding: 0px 10px 10px 0px;
  border-bottom-right-radius: 45px;
}

.service-bg-white .icon-service .icon-inner {
  background-color: var(--secondary-color);
}

section.service-bg-white .spacer-top-left-25 {
  box-shadow: -10px -10px 0px 0px var(--secondary-color);
}

.team-social-inner {
  background-color: var(--heading-color-3);
  padding: 0px 15px 15px 0px;
  border-bottom-right-radius: 35px;
}

.icon-service .spacer-top-left-25,
.team-social .spacer-top-left-25 {
  box-shadow: -10px -10px 0px 0px var(--heading-color-3);
}

.team-social .spacer-top-left-25,
.team-social .icon-social {
  width: 40px;
  height: 40px;
}

.team-social .icon-social {
  font-size: var(--text-base);
}

.icon-service img {
  object-fit: contain;
  width: 45px;
  height: 45px;
}

.project.service-box {
  min-height: 400px;
  max-height: 400px;
}

.project.service-box .bg-overlay-3 {
  border-radius: 25px;
}

.why-box.project {
  justify-content: flex-end;
  padding: 40px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.project.service-box .spacer-top-left,
.why-box.project .spacer-top-left {
  box-shadow: -10px -10px 0px 0px var(--secondary-color);
}

.project.service-box h6,
.why-box.project h6 {
  border-bottom-right-radius: 10px;
  padding-right: 15px;
  padding-left: 10px;
}

.project.service-box .service-content {
  min-height: 400px;
}

.impact-box {
  position: relative;
  max-width: 488px;
}

.impact-box img {
  min-height: 550px;
  object-fit: cover;
  object-position: center;
}

.impact-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
}

.team-info-wrapper {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  right: 0;
}

.impact-content {
  padding: 20px 20px 0px 0px;
  border-top-right-radius: 25px;
  width: 100%;
  background-color: var(--heading-color-3);
}

.team-content {
  padding: 20px;
  border-top-left-radius: 25px;
  width: 100%;
  background-color: var(--heading-color-3);
}

.testimonial-box {
  background-color: var(--background-alt-color);
}

.testimonial-box img {
  width: 60px;
  height: 60px;
  border-radius: 50px;
}

.testimonial-box p {
  font-size: var(--text-big);
}

.testimonial-box .bi-quote::before {
  border-radius: 50%;
  background-color: var(--heading-color-3);
  font-size: var(--icon-qoute-size);
}

.story-box {
  position: relative;
  padding: 30px;
  background-color: var(--heading-color-3);
  border-radius: 25px;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.story-box img {
  width: 70px;
  height: 70px;
  border-radius: 100px;
  border: 4px solid var(--heading-color-1);
}

.story-box .qoute-ornament {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  right: 0;
}

.story-box .qoute-inner {
  background-color: var(--secondary-color);
  padding: 10px 0px 0px 10px;
  border-top-left-radius: 47px;
}

.story-box .qoute-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  border-radius: 100px;
  background-color: var(--heading-color-2);
}

.pricing-box {
  padding: 40px;
  border: 1px solid var(--text-color-1);
  border-radius: 25px;
}

.home-pricing-row {
  overflow: visible;
}

.home-pricing-slider {
  position: relative;
  display: block !important;
  margin-right: -12px;
  margin-left: -12px;
  overflow: hidden;
  padding: 8px 0 78px;
}

.home-pricing-slider .slick-list {
  overflow: hidden;
  padding: 0 2px;
}

.home-pricing-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.home-pricing-slider .slick-slide {
  height: auto;
  padding-right: 12px;
  padding-left: 12px;
}

.home-pricing-slider .slick-slide > div,
.home-pricing-slider .slick-slide .col-12 {
  height: 100%;
}

.home-pricing-slider .col-12 {
  width: 100%;
  max-width: none;
  flex: none;
  margin-bottom: 0 !important;
}

.home-pricing-arrow {
  position: absolute;
  top: auto;
  bottom: 8px;
  z-index: 30;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color-3);
  background-color: var(--secondary-color);
  transform: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.home-pricing-arrow.slick-hidden {
  display: inline-flex !important;
}

.home-pricing-arrow:hover,
.home-pricing-arrow:focus-visible {
  color: var(--secondary-color);
  background-color: var(--heading-color-3);
  transform: scale(1.06);
}

.home-pricing-arrow-prev {
  left: calc(50% - 58px);
}

.home-pricing-arrow-next {
  right: calc(50% - 58px);
}

.pricing-box.pricing-box-card {
  position: relative;
  z-index: 0;
  background-color: var(--secondary-color);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s ease,
    border-color 0.28s ease;
}

.pricing-box.pricing-box-card:hover {
  z-index: 4;
  transform: scale(1.04);
  background-color: var(--heading-color-3);
  border-color: rgba(245, 245, 247, 0.45);
}

.pricing-box-tag {
  border: 1px solid var(--heading-color-2);
  color: var(--heading-color-3);
}

.pricing-box-card:hover .pricing-box-tag {
  border-color: var(--heading-color-1);
  color: var(--heading-color-1);
}

.pricing-box-price {
  color: var(--primary-color);
}

.pricing-box-price h2,
.pricing-box-price p {
  color: inherit;
}

.pricing-box-card:hover .pricing-box-price {
  color: var(--secondary-color);
}

.pricing-box-excerpt {
  color: var(--text-color);
}

.pricing-box-card:hover .pricing-box-excerpt {
  color: white;
}

.pricing-box-divider {
  margin: 0;
  opacity: 1;
  border: 0;
  border-top: 1px solid var(--text-color-1);
}

.pricing-box-card:hover .pricing-box-divider {
  border-top-color: var(--heading-color-2);
}

.pricing-box-feature {
  color: var(--primary-color);
}

.pricing-box-card:hover .pricing-box-feature {
  color: var(--secondary-color);
}

.pricing-box-card:hover .pricing-box-check,
.pricing-box-card:hover .pricing-box-check::before {
  color: var(--secondary-color) !important;
}

.pricing-box-card:hover .btn-cta-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--heading-color-1) !important;
}

.pricing-box-card:hover .btn-cta-primary .btn-text {
  color: var(--heading-color-3) !important;
}

.pricing-box-card:hover .btn-cta-primary .btn-icon-primary {
  width: var(--button-icon-size);
  height: var(--button-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heading-color-1) !important;
  border-radius: 50%;
  color: var(--secondary-color) !important;
}

.pricing-box-card:hover .btn-cta-primary .btn-icon-primary::before {
  color: var(--heading-color-3) !important;
}

.pricing-box-footer {
  padding-top: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-box.pricing-box-card {
    transition: none;
  }

  .pricing-box.pricing-box-card:hover {
    transform: none;
  }
}

@media only screen and (max-width: 1460px) {
  .home-pricing-arrow-prev {
    left: calc(50% - 58px);
  }

  .home-pricing-arrow-next {
    right: calc(50% - 58px);
  }
}

@media only screen and (max-width: 767.98px) {
  .home-pricing-slider {
    margin-right: -8px;
    margin-left: -8px;
    padding-bottom: 78px;
  }

  .home-pricing-slider .slick-slide {
    padding-right: 8px;
    padding-left: 8px;
  }

  .home-pricing-arrow {
    bottom: 8px;
  }

  .home-pricing-arrow:hover,
  .home-pricing-arrow:focus-visible {
    transform: scale(1.06);
  }

  .home-pricing-arrow-prev {
    left: calc(50% - 58px);
  }

  .home-pricing-arrow-next {
    right: calc(50% - 58px);
  }

  .home-pricing-section {
    padding-bottom: 120px;
  }
}

.home-pricing-section {
  overflow: visible;
  background-color: white;
}

.border-primary-color {
  border: 1px solid var(--heading-color-2);
}

.border-secondary-color {
  border: 1px solid var(--heading-color-1);
}

.border-text-color {
  border: 1px solid var(--text-color-1);
}

.border-top-primary {
  border-top: 1px solid var(--text-color-1);
  opacity: 1;
}

.border-top-secondary {
  border-top: 1px solid var(--heading-color-2);
  opacity: 1;
}

.blog {
  transition: all 0.3s ease;
  border-radius: 25px;
  overflow: hidden;
  border: none;
  background-color: var(--heading-color-3);
}

.blog-content {
  padding: 30px;
}

.blog-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  color: var(--text-color-1);
}

.premium-blog-section {
  position: relative;
  overflow: hidden;
}

.premium-blog-intro {
  color: #7c7c7c;
  max-width: 520px;
  margin-left: auto;
}

.premium-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.premium-blog-featured,
.premium-blog-card,
.premium-blog-topics {
  background: #f5f5f7;
}

.premium-blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  min-height: 520px;
  overflow: hidden;
  border-radius: 18px;
}

.premium-blog-image,
.premium-blog-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--heading-color-2);
}

.premium-blog-image img,
.premium-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}

.premium-blog-image::after,
.premium-blog-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.premium-blog-featured:hover img,
.premium-blog-card:hover img {
  transform: scale(1.06);
  opacity: 0.92;
}

.premium-blog-featured-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.premium-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #7c7c7c;
  font-size: 14px;
}

.premium-blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.premium-blog-meta i {
  color: var(--heading-color-3);
}

.premium-blog-featured h3,
.premium-blog-card h4 {
  color: var(--primary-color);
  margin: 0;
  transition: color 0.3s ease;
}

.premium-blog-featured h3 {
  font-size: 42px;
  line-height: 1.12;
}

.premium-blog-featured p,
.premium-blog-card p {
  color: #7c7c7c;
  margin: 0;
}

.premium-blog-featured a:hover h3,
.premium-blog-card a:hover h4 {
  color: var(--heading-color-3);
}

.premium-blog-side {
  display: grid;
  grid-template-rows: 1fr 1fr auto;
  gap: 18px;
}

.premium-blog-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
  border-radius: 14px;
  min-height: 170px;
}

.premium-blog-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.premium-blog-card h4 {
  font-size: 24px;
  line-height: 1.18;
}

.premium-blog-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.premium-blog-topics {
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.premium-blog-topics span {
  color: var(--primary-color);
  font-weight: 700;
  margin-right: 6px;
}

.premium-blog-topics a {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  color: var(--primary-color);
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 600;
}

.premium-blog-topics a:hover {
  background: var(--heading-color-1);
  border-color: var(--heading-color-1);
  color: var(--heading-color-3);
}

.news-grid-intro {
  color: var(--text-color);
}

.news-list-card {
  border-radius: 8px;
  background: var(--accent-color);
  overflow: hidden;
  transition: 0.3s ease;
}

.news-list-image {
  position: relative;
  display: block;
  height: 285px;
  overflow: hidden;
  background: var(--heading-color-3);
}

.news-list-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 26, 47, 0.02), rgba(4, 26, 47, 0.28));
}

.news-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.55s ease;
}

.news-list-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-list-meta,
.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-list-meta span,
.news-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-color);
  font-size: 14px;
}

.news-list-meta i,
.news-detail-meta i {
  color: #222222;
}

.news-list-content h3 {
  margin: 0;
  color: var(--heading-color-3);
  font-size: 27px;
  line-height: 1.18;
}

.news-list-content p {
  margin: 0;
  color: var(--text-color);
}

.news-list-card:hover {
  transform: translateY(-6px);
}

.news-list-card:hover img {
  transform: scale(1.06);
}

.news-detail-premium {
  background: var(--accent-color);
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(280px, 3fr);
  gap: 34px;
  align-items: start;
}

.news-detail-article {
  max-width: none;
  margin: 0;
}

.news-detail-article > h2 {
  margin: 18px 0;
  color: var(--heading-color-3);
  font-size: 54px;
  line-height: 1.08;
}

.news-detail-lead {
  margin: 0 0 30px;
  color: var(--text-color);
  font-size: 21px;
  line-height: 1.65;
}

.news-detail-image {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin-bottom: 38px;
}

.news-detail-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-detail-content p {
  margin: 0;
  color: var(--text-color);
}

.news-detail-content h3 {
  margin: 18px 0 0;
  color: #222222;
}

.news-detail-callout {
  margin: 10px 0;
  padding: 28px;
  border-radius: 8px;
  background: #f7fafc;
  border: 1px solid rgba(4, 26, 47, 0.1);
}

.news-detail-callout strong {
  display: block;
  color: var(--heading-color-3);
  font-size: 22px;
  margin-bottom: 14px;
}

.news-detail-callout ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-color);
}

.news-detail-callout li:not(:last-child) {
  margin-bottom: 8px;
}

.news-detail-sidebar {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-sidebar-card {
  border-radius: 14px;
  background-color: #f5f5f7;
  padding: 24px;
}

.news-sidebar-card h3 {
  margin: 0 0 20px;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.news-recent-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-recent-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: var(--primary-color);
}

.news-recent-item img {
  width: 82px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.news-recent-item span {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.news-recent-item:hover span {
  color: var(--heading-color-3);
}

.news-support-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 14px;
  background-color: var(--heading-color-3);
  color: #ffffff;
  padding: 34px 28px;
}

.news-support-card > i {
  color: #ffffff;
  font-size: 58px;
  line-height: 1;
  margin-bottom: 20px;
}

.news-support-card > span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 800;
}

.news-support-card h3 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.15;
}

.news-support-card p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.5;
}

.news-support-card a {
  width: 100%;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 999px;
  background-color: #ffffff;
  color: var(--heading-color-3);
  font-size: 24px;
  font-weight: 800;
}

.news-support-card a i {
  color: var(--heading-color-3);
  font-size: 26px;
}

.elite-process-section {
  position: relative;
  overflow: hidden;
  padding-top: 108px;
  padding-bottom: 118px;
  background-color: #ffffff;
}

.elite-process-section::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 72px;
  width: 220px;
  height: 150px;
  opacity: 0.26;
  background-image: radial-gradient(rgba(190, 26, 42, 0.42) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

.elite-process-section::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 2px solid rgba(190, 26, 42, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.elite-process-board {
  position: relative;
  z-index: 1;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}

.elite-process-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 54px;
  min-height: 360px;
  padding-bottom: 44px;
}

.elite-process-intro {
  max-width: 790px;
}

.elite-process-visual {
  position: relative;
  overflow: visible;
  border-radius: 0;
  aspect-ratio: auto;
  min-height: 360px;
  max-height: none;
}

.elite-process-visual::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 44px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(42, 42, 42, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.elite-process-visual::after {
  content: "";
  position: absolute;
  top: 92px;
  left: 92px;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 50px rgba(42, 42, 42, 0.1);
  pointer-events: none;
  z-index: 0;
}

.elite-process-visual-img {
  display: block;
  position: absolute;
  right: -4px;
  bottom: -10px;
  width: min(520px, 100%);
  height: 390px;
  object-fit: contain;
  object-position: right bottom;
  z-index: 1;
}

.elite-process-kicker {
  color: var(--heading-color-3);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
}

.elite-process-kicker::after {
  content: "";
  width: 44px;
  height: 3px;
  background-color: var(--heading-color-3);
}

.elite-process-title {
  max-width: 820px;
  color: #1f1f21;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.elite-process-title span {
  color: var(--heading-color-3);
}

.elite-process-head-desc {
  max-width: 710px;
  color: #3c3d40;
  font-size: 19px;
  line-height: 1.7;
}

.elite-process-stats {
  display: none;
}

.elite-process-stats div {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}

.elite-process-stats strong {
  display: block;
  color: var(--heading-color-3);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 6px;
}

.elite-process-stats span {
  color: var(--text-color);
  font-size: 14px;
}

.elite-process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  margin-top: 4px;
}

.elite-process-step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
  min-height: 330px;
  padding: 42px 38px;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 20px 60px rgba(42, 42, 42, 0.08);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.elite-process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 76px rgba(42, 42, 42, 0.12);
}

.elite-process-step-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  margin-bottom: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heading-color-3);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(190, 26, 42, 0.3);
}

.elite-process-step-icon i {
  font-size: 34px;
  line-height: 1;
}

.elite-process-step-no {
  position: absolute;
  top: 38px;
  right: 30px;
  color: rgba(42, 42, 42, 0.1);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  margin: 0;
}

.elite-process-step-card h4 {
  position: relative;
  order: 2;
  color: #242426;
  margin: 0 0 26px;
  padding-bottom: 20px;
  line-height: 1.2;
  font-size: 27px;
  font-weight: 800;
}

.elite-process-step-card h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background-color: var(--heading-color-3);
}

.elite-process-step-card p {
  order: 3;
  color: #3f4044;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  max-width: 310px;
}

.blog img {
  padding: 20px 20px 0px 20px;
}

.blog:hover img {
  transform: scale(1.05) rotate(2deg);
  opacity: 0.8;
}

.blog h4,
.blog img {
  transition: 0.3s;
  color: var(--secondary-color);
}

.footer {
  background-color: var(--heading-color-3);
  padding: 0px 20px;
}

.footer a {
  transition: 0.3s;
}

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

.footer > .b-container {
  padding: 120px 0px;
  padding-bottom: 60px;
}

.footer-logo-box img {
  max-width: 226px;
}

.icon-contact,
.icon-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 100px;
  background-color: var(--heading-color-2);
  color: var(--heading-color-1);
  transition: 0.3s;
}

.icon-contact {
  width: 70px;
  height: 70px;
}

.icon-social {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

.icon-social:hover {
  background-color: var(--heading-color-1);
}

.icon-social:hover {
  color: var(--heading-color-3);
}

.share-post .icon-social {
  width: 42px;
  height: 42px;
}

.tags-post {
  max-width: 270px;
}

.footer-rights {
  font-weight: 500;
}

.footer-terms a {
  font-weight: 500;
  transition: 0.3s;
}

.footer-terms a:hover {
  color: var(--secondary-color) !important;
}

/* Premium footer redesign */
.footer {
  background-color: #f5f5f7;
  padding: 32px 32px 24px;
  overflow: visible !important;
}

.footer > .b-container {
  max-width: 1760px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background-color: #ffffff;
  padding: 0 96px 24px;
}

.footer > .b-container > .row:first-child {
  position: relative;
  min-height: 270px;
  align-items: center !important;
  margin-right: -96px;
  margin-left: -96px;
  padding: 52px 96px;
  overflow: hidden;
  background-color: var(--heading-color-3);
}

.footer > .b-container > .row:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 82% 12%, rgba(255, 255, 255, 0.14), transparent 24%),
    repeating-radial-gradient(ellipse at 95% 20%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 8px);
  opacity: 0.8;
}

.footer > .b-container > .row:first-child::after {
  content: "";
  position: absolute;
  left: 28%;
  right: -8%;
  bottom: -138px;
  height: 230px;
  border-radius: 50% 50% 0 0;
  background-color: rgba(255, 255, 255, 0.09);
  transform: rotate(-8deg);
}

.footer > .b-container > .row:first-child > [class*="col-"] {
  position: relative;
  z-index: 1;
}

.footer > .b-container > .row:first-child h3 {
  max-width: 560px;
  color: #ffffff !important;
  font-size: 42px;
  line-height: 1.22;
  font-weight: 800;
}

.footer-cta-desc {
  max-width: 480px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.footer-subscribe-note {
  max-width: 780px;
  margin: 16px 0 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.45;
}

.footer .form.subscribe {
  max-width: 780px;
  margin: 0 0 0 auto;
  padding: 0;
  border-radius: 999px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(42, 42, 42, 0.14);
}

.footer .form.subscribe::before {
  content: "\F32F";
  width: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "bootstrap-icons";
  color: #55565a;
  font-size: 24px;
  padding-left: 30px;
}

.footer .form.subscribe input {
  min-height: 82px;
  padding: 0 22px;
  background-color: transparent;
  color: var(--primary-color);
}

.footer .form.subscribe .btn-cta-form {
  min-height: 82px;
  margin: 0 !important;
  border-radius: 999px;
  background-color: #ffffff;
  color: var(--heading-color-3);
  font-weight: 800;
  gap: 28px;
}

.footer .form.subscribe .btn-cta-form::after {
  content: "\F138";
  font-family: "bootstrap-icons";
  font-size: 24px;
  font-weight: 400;
}

.footer > .b-container > hr {
  display: none;
}

.footer .ptpb-120 {
  width: 100%;
  margin: 0 !important;
  padding: 66px 0 0 !important;
}

.footer-logo-box {
  max-width: 292px;
}

.footer-logo-box img,
.footer-logo-box .logo-footer {
  width: 100%;
  height: auto !important;
  max-width: 292px;
  object-fit: contain;
}

.footer-brand-col {
  padding-right: 54px !important;
}

.footer-brand-col p {
  max-width: 330px;
  color: #5e636d !important;
  font-size: 17px;
  line-height: 1.7;
}

.footer-socials {
  gap: 16px !important;
}

.footer .icon-social {
  width: 44px;
  height: 44px;
  background-color: #f5f5f7;
  color: #1f1f21;
  font-size: 17px;
}

.footer .icon-social:hover {
  background-color: var(--heading-color-3);
  color: #ffffff;
}

.footer-link-col {
  padding-left: 60px !important;
  border-left: 1px solid rgba(42, 42, 42, 0.09);
}

.footer-link-col h4 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #24262b !important;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-link-col h4::before {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(190, 26, 42, 0.1);
  color: var(--heading-color-3);
  font-family: "bootstrap-icons";
  font-size: 20px;
}
.footer-link-col ul {
  gap: 14px;
}

.footer-link-col li {
  width: 100%;
  margin: 0 !important;
}

.footer-link-col li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #555b66;
  font-size: 16px;
  font-weight: 600;
}

.footer-link-col li a::after {
  content: "\F285";
  font-family: "bootstrap-icons";
  color: #7f8590;
  font-size: 13px;
}

.footer-link-col li a:hover {
  color: var(--heading-color-3);
}

.footer-contact-row {
  margin-top: 46px;
  padding: 20px 28px;
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 12px;
  background-color: #ffffff;
}

.footer-contact-row .row {
  gap: 0;
}

.footer-contact-row .col-12 {
  border-right: 1px solid rgba(42, 42, 42, 0.08);
}

.footer-contact-row .col-12:last-child {
  border-right: 0;
}

.footer-contact-item {
  min-height: 76px;
  padding: 0 24px;
  color: #5f6570;
}

.footer-contact-item i {
  background-color: var(--heading-color-3);
  color: #ffffff;
}

.footer-contact-item span {
  color: #5f6570;
  font-size: 14px;
}

.footer-contact-item strong {
  color: var(--heading-color-3);
  font-size: 17px;
}

.footer-contact-item:hover,
.footer-contact-item:hover strong {
  color: var(--heading-color-3);
}

.footer > .row {
  max-width: 1760px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 0 0 28px 28px;
}

.footer .border-top-color {
  width: calc(100% - 192px);
  margin: 0 auto;
}

.footer .footer-bottom-grid {
  color: black;
}

.footer-rights,
.footer-credit {
  color: black !important;
  font-size: 14px;
}

.footer-terms a,
.footer-credit a {
  color: var(--heading-color-3) !important;
}

/* ---------------------------- */
/* Accordion                    */
/* ---------------------------- */
.accordion .accordion-item {
  border: none;
  border-radius: 0;
  background-color: transparent;
  border-bottom: var(--accent-color-2) 2px solid;
}

.accordion .accordion-header {
  border-bottom: 1px solid var(--divider-2-color);
}

.accordion .accordion-button {
  font-family: var(--font);
  padding: 15px 30px;
  font-size: var(--text-2xl);
  font-weight: 500;
  background-color: var(--heading-color-2);
  color: var(--heading-color-1);
  border-radius: 25px;
  border-bottom: none !important;
  box-shadow: none !important;
}

.accordion .accordion-button.collapsed {
  color: var(--secondary-color);
}

.accordion .accordion-item:not(:last-child) {
  margin-bottom: 20px;
}

.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-radius: 0px;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23EFEFEF' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  background-size: 30px;
  background-position: center;
  transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%2346ade2' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-button::after {
  transition: all 0.5s;
}

.accordion .accordion-body {
  color: var(--text-color);
  padding: 20px 30px 10px 30px;
}

.faq-page-section .faq-list-accordion {
  border-top: 1px solid #d8d8d8;
}

.faq-page-section .faq-list-accordion .accordion-item {
  margin: 0;
  border: 0;
  border-bottom: 1px solid #d8d8d8;
  border-radius: 0;
  background-color: transparent;
}

.faq-page-section .faq-list-accordion .accordion-header {
  border: 0;
}

.faq-page-section .faq-list-accordion .accordion-button,
.faq-page-section .faq-list-accordion .accordion-button.collapsed {
  min-height: 39px;
  padding: 9px 14px 9px 32px;
  border: 0;
  border-radius: 0;
  background-color: #f7f7f7;
  color: #333;
  box-shadow: none !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.faq-page-section .faq-list-accordion .accordion-button::after {
  display: none;
}

.faq-page-section .faq-list-accordion .accordion-button::before {
  content: "+";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 13px;
  transform: translateY(-50%);
  color: #1f1f1f;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.faq-page-section .faq-list-accordion .accordion-button:not(.collapsed)::before {
  content: "-";
}

.faq-page-section .faq-list-accordion .accordion-collapse {
  background-color: #fff;
}

.faq-page-section .faq-list-accordion .accordion-body {
  padding: 4px 26px 20px;
  color: #5f6368;
  font-size: 14px;
  line-height: 1.65;
}

.accordion .accordion-body-2 {
  color: var(--text-color-2);
  padding: 10px 15px 10px 100px;
}

/* ---------------------------- */
/* Form                         */
/* ---------------------------- */
.form {
  margin-top: 40px;
  background-color: var(--accent-color);
  padding: 10px;
  border-radius: 35px;
}

.form label {
  font-size: 18px;
  font-weight: 500;
  display: none;
}

.form input,
.form textarea,
.form select {
  background-color: var(--bg-form);
  color: var(--text-color);
  border-radius: 100px;
  outline: none;
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  border: none;
}

.form input div::placeholder {
  color: var(--text-color);
}

.form textarea {
  max-height: 170px;
  border-radius: 30px;
}

.form select option {
  color: var(--heading-color);
  background-color: #1e1f23;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  box-shadow: none;
  border: solid 2px var(--accent-color-2);
  background-color: var(--bg-form);
  color: var(--text-color);
  border: none;
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--placeholder-color);
  font-size: 14px;
}

.form.subscribe {
  border-radius: 100px;
  padding: 5px;
}

.form.subscribe input {
  padding-left: 20px;
}

.form.subscribe button {
  max-width: 184px;
}

/* ---------------------------- */
/* Responsive Layouts           */
/* ---------------------------- */
@media only screen and (min-width: 1199.99px) {
  .breadcrumb li {
    font-size: var(--text-xl);
  }
}

@media only screen and (max-width: 1199.98px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-detail-banner {
    min-height: 520px;
    padding-top: 180px;
  }

  .package-detail-banner-content {
    max-width: 560px;
  }

  .footer {
    padding: 24px;
  }

  .footer > .b-container {
    padding: 0 42px 24px;
  }

  .footer > .b-container > .row:first-child {
    margin-right: -42px;
    margin-left: -42px;
    padding: 48px 42px;
  }

  .footer-link-col {
    padding-left: 28px !important;
  }

  .footer-contact-row .col-12 {
    border-right: 0;
    border-bottom: 1px solid rgba(42, 42, 42, 0.08);
  }

  .footer-contact-row .col-12:last-child {
    border-bottom: 0;
  }

  .footer .border-top-color {
    width: calc(100% - 84px);
  }

  .home-partner-cta-panel {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 64px;
  }

  .home-partner-cta-actions {
    max-width: 560px;
  }

  section.our-partners .client-wrapper {
    width: min(960px, calc(100vw - 32px));
    padding: 22px 28px;
  }

  section.our-partners .client-logos {
    grid-auto-columns: minmax(120px, 1fr);
    gap: 24px;
  }

  .premium-services-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .premium-services-desc p {
    max-width: 620px;
    margin-left: 0;
  }

  .home-why-grid {
    grid-template-columns: 1fr;
  }

  .home-why-grid .home-why-card {
    min-height: auto;
  }

  .quote-premium-intro,
  .quote-premium-layout,
  .dealer-application-layout {
    grid-template-columns: 1fr;
  }

  .quote-premium-side {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 80px;
    line-height: var(--leading-small);
  }

  h2,
  .heading-2 {
    font-size: 40px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 23px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  p,
  a,
  li {
    font-size: 16px;
  }

  .breadcrumb li,
  .breadcrumb a {
    font-size: var(--text-base);
  }

  .btn-cta-primary {
    font-size: var(--md-text-base);
  }

  .btn-cta-primary .btn-text {
    padding: 14px;
  }

  .btn-cta-primary .btn-icon-primary:before {
    font-size: var(--md-button-icon-size);
  }

  .home-hero .spacer-bottom-right {
    margin-left: 0px;
  }

  .hero-content {
    max-width: 89%;
  }

  .our-partners .col-auto,
  .achievements .col-auto {
    width: calc(100% - 100px);
  }

  section.achievements {
    margin-bottom: -119px;
  }

  section.expertise {
    padding-top: 240px;
  }

  .nav-pills .nav-link {
    font-size: var(--text-3xl);
  }

  .impact-box img {
    min-height: 500px;
  }

  .testimonial-box p {
    font-size: var(--text-2xl);
  }

  .img-faqs {
    height: 500px;
  }

  .accordion .accordion-button {
    font-size: var(--md-text-2xl);
  }

  .card-project {
    width: 50%;
  }

  .card-cta {
    padding: 30px;
  }

  .sidebar-service {
    justify-content: space-between;
    padding-bottom: 90px;
  }

  .sidebar-service .card-project:first-child {
    width: 100%;
  }

  .sidebar-service .card-project:nth-child(2),
  .sidebar-service .card-project:nth-child(3) {
    width: 46%;
  }

  .text-big-title {
    font-size: var(--text-small-huge);
  }
}

@media only screen and (min-width: 991.98px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    top: 60px;
    left: 10px;
  }

  .dropdown .dropdown-menu {
    display: none;
  }

  .dropdown:hover .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }

  .navbar-nav .nav-link {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .nav-link.icon-submenu {
    padding: 0px !important;
  }
}

@media only screen and (max-width: 991.98px) {
  .dropdown-menu {
    width: 100%;
    border-radius: 0;
    padding: 5px;
  }

  .dropdown-item {
    margin: 10px 0;
  }

  .nav-item.dropdown {
    position: relative;
  }

  .nav-item.dropdown div {
    justify-content: space-between;
  }

  .nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.1);
    border-radius: 16px;
  }

  .nav-link .bi-chevron-down {
    border: 1px solid;
    border-radius: 30px;
    padding: 1px 15px;
  }

  .navbar-nav {
    width: 100%;
  }

  .icon-submenu {
    padding: 0px 5px;
  }

  .header-actions {
    width: 100%;
    gap: 18px !important;
  }

  .language-switcher {
    width: 100%;
  }

  .language-current,
  .language-switcher-item {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
    padding: 7px 14px 7px 7px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
  }

  .language-menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .language-switcher:hover .language-menu,
  .language-switcher:focus-within .language-menu {
    display: block;
  }
}

@media only screen and (max-width: 769px) and (min-width: 768px) {
  section.achievements {
    margin-bottom: -108px !important;
  }

  section.expertise {
    padding-top: 230px !important;
  }
}

@media only screen and (max-width: 767px) and (min-width: 576.98px) {
  section.expertise {
    padding-top: 310px !important;
  }
}

@media only screen and (max-width: 768.98px) {
  h1 {
    font-size: 61px;
  }

  h2,
  .heading-2 {
    font-size: 27px;
  }

  h3 {
    font-size: 23px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  p,
  a,
  li {
    font-size: 14px;
  }

  .breadcrumb li,
  .breadcrumb a {
    font-size: var(--sm-text-xl);
  }

  .btn-cta-primary {
    font-size: var(--sm-text-base);
  }

  .home-hero h1 {
    max-width: 100%;
  }

  .hero-desc {
    margin-top: 0px;
    max-width: 100%;
  }

  .hero-content {
    max-width: 81%;
    padding: 20px 20px 0px 20px;
  }

  .w-49 {
    width: 100%;
  }

  .w-51 {
    width: 100% !important;
  }

  .mb-n90 {
    margin-bottom: 0px;
  }

  .max-width-370 {
    max-width: 100%;
  }

  .topbot-rounded-6 {
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-top-right-radius: 0px;
  }

  .why-box.project {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .impact-box {
    max-width: 100%;
  }

  .nav-pills .nav-item {
    padding: 20px 0px;
  }

  .nav.nav-pills,
  .nav-pills .nav-link {
    width: 100%;
  }

  .nav-pills .nav-link {
    font-size: var(--sm-text-4xl);
  }

  .testimonial-box p {
    font-size: var(--sm-text-2xl);
  }

  .text-faqs h3 {
    padding: 20px;
  }

  .text-faqs .wrapper-text {
    width: 54%;
  }

  .accordion .accordion-button {
    font-size: var(--sm-text-2xl);
  }

  .list-people {
    order: -9999;
    width: 100%;
  }

  .form.subscribe {
    border-radius: 35px;
  }

  .form.subscribe button {
    max-width: 100%;
  }

  section.achievements {
    margin-bottom: -189px;
  }

  section.expertise {
    padding-top: 300px;
  }

  .project-desc {
    right: 0px;
  }

  .card-project {
    width: 100%;
  }

  .card-cta {
    padding: 20px;
  }

  .sidebar-service .card-project:nth-child(2),
  .sidebar-service .card-project:nth-child(3) {
    width: 100%;
  }

  .text-big-title {
    font-size: var(--text-5xl);
  }

  .card-form.padding-50 {
    padding: 35px;
  }

  .tags-post {
    max-width: 100%;
  }

  .section.hero-banner .border-right-color {
    border: none;
  }
}

@media only screen and (max-width: 576.98px) {
  section.achievements {
    margin-bottom: -202px;
  }

  section.expertise {
    padding-top: 325px;
  }
}

/* Destek Assist custom navigation/actions */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0 !important;
  left: 100% !important;
  margin-top: 0 !important;
  margin-left: 2px;
}
.service-mega-menu {
  width: 285px;
}
.service-mega-menu .dropdown-item {
  white-space: normal;
  font-size: 16px;
}
.package-menu {
  width: 360px;
}
.package-menu .dropdown-item {
  white-space: normal;
  font-size: 16px;
  line-height: 1.35;
}
.premium-services-section {
  position: relative;
  background-color: #efefef;
  overflow: hidden;
}

.premium-services-head {
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(260px, 330px);
  align-items: end;
  justify-content: space-between;
  gap: 70px;
}

.premium-services-section h6 {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  color: var(--heading-color-3) !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.premium-services-section h6::after {
  content: "";
  width: 36px;
  height: 3px;
  background-color: var(--heading-color-3);
}

.premium-services-section h2 {
  max-width: 620px;
  margin-top: 34px;
  color: #1f1f21 !important;
  font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.premium-services-section h2 .text-heading-color-1 {
  color: var(--heading-color-3) !important;
}

.premium-services-desc p {
  max-width: 300px;
  margin-left: auto;
  color: #55565a !important;
  font-size: 16px;
  line-height: 1.62;
}
.premium-service-showcase {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 18px;
  background-color: #ffffff;
}
.premium-service-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 22px;
  background-color: #ffffff;
}
.premium-service-tab {
  width: 100%;
  min-height: 62px;
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: var(--primary-color);
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-align: left;
  transition: 0.3s;
}
.premium-service-tab span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f1f21;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.premium-service-tab strong {
  color: inherit;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}
.premium-service-tab:hover,
.premium-service-tab.active {
  border-color: rgba(190, 26, 42, 0.22);
  background: rgba(190, 26, 42, 0.06);
  color: var(--heading-color-3);
  transform: none;
}
.premium-service-tab:hover span,
.premium-service-tab.active span {
  background: var(--heading-color-3);
  color: var(--heading-color-1);
}
.premium-service-panels {
  position: relative;
  min-height: 500px;
  background-color: #ffffff;
}
.premium-service-panel {
  display: none;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background-color: transparent;
}
.premium-service-panel.active {
  display: block;
}
.premium-service-panel.is-animating {
  animation: premiumPanelReveal 0.45s ease both;
}
.premium-service-media {
  position: relative;
  height: 100%;
  min-height: 640px;
  overflow: hidden;
  background: #f5f5f7;
}
.premium-service-media::after {
  display: none;
}
.premium-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.premium-service-panel.is-animating .premium-service-media img {
  animation: premiumImageReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.premium-service-index {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--heading-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(42, 42, 42, 0.12);
}
.premium-service-content {
  min-height: 500px;
  padding: 58px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  color: var(--primary-color);
}
.premium-service-panel.is-animating .premium-service-index,
.premium-service-panel.is-animating .premium-service-content > * {
  animation: premiumContentReveal 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.premium-service-panel.is-animating .premium-service-kicker {
  animation-delay: 0.08s;
}
.premium-service-panel.is-animating .premium-service-content h3 {
  animation-delay: 0.14s;
}
.premium-service-panel.is-animating .premium-service-content p {
  animation-delay: 0.2s;
}
.premium-service-panel.is-animating .premium-service-meta {
  animation-delay: 0.26s;
}
.premium-service-panel.is-animating
  .premium-service-content
  .btn-cta-secondary {
  animation-delay: 0.32s;
}
.premium-service-kicker {
  margin: 0;
  color: var(--heading-color-3);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}
.premium-service-content h3 {
  margin: 0;
  color: #1f1f21;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
}
.premium-service-content p {
  margin: 0;
  color: #626368;
  font-size: 17px;
  line-height: 1.62;
}
.premium-service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.premium-service-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(42, 42, 42, 0.12);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
}
.premium-service-meta i {
  color: var(--heading-color-3);
}

.premium-service-content .btn-cta-primary {
  background-color: var(--heading-color-3);
  border-color: transparent;
}

.service-directory {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.service-directory-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.service-directory-head h2 {
  max-width: 850px;
}

.service-directory-head p {
  color: var(--text-color);
}

.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.service-feature-card,
.service-modern-card,
.service-side-list {
  border: 1px solid rgba(20, 40, 66, 0.1);
  border-radius: 8px;
  background: var(--accent-color);
  box-shadow: 0 18px 45px rgba(4, 26, 47, 0.08);
}

.service-feature-card {
  grid-column: span 8;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.service-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 26, 47, 0.9) 0%, rgba(20, 40, 66, 0.68) 44%, rgba(4, 26, 47, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 26, 47, 0.04), rgba(4, 26, 47, 0.45));
}

.service-feature-card > img,
.service-modern-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-feature-card > img {
  position: absolute;
  inset: 0;
}

.service-feature-content {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: 54px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-feature-content > span,
.service-modern-card span {
  color: var(--heading-color-1);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-feature-content h3 {
  margin: 0;
  color: var(--secondary-color);
  font-size: 48px;
  line-height: 1.05;
}

.service-feature-content p {
  margin: 0;
  color: var(--text-color-1);
  max-width: 540px;
}

.service-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-feature-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--secondary-color);
  font-size: 14px;
}

.service-feature-meta i {
  color: var(--heading-color-1);
}

.service-side-list {
  grid-column: span 4;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--heading-color-3);
}

.service-side-item {
  min-height: 92px;
  display: grid;
  grid-template-columns: 42px 1fr 34px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.service-side-item span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(70, 173, 226, 0.14);
  color: var(--heading-color-1);
  font-weight: 800;
  font-size: 13px;
}

.service-side-item strong {
  color: inherit;
  line-height: 1.25;
}

.service-side-item i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--heading-color-1);
  color: var(--accent-color);
  font-size: 22px;
}

.service-side-item:hover {
  transform: translateX(4px);
  color: var(--secondary-color);
  border-color: rgba(70, 173, 226, 0.55);
}

.service-modern-card {
  grid-column: span 4;
  min-height: 390px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: 0.3s;
}

.service-modern-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 26, 47, 0.08), rgba(4, 26, 47, 0.88));
}

.service-modern-card > img {
  position: absolute;
  inset: 0;
  transition: 0.55s;
}

.service-modern-card > div {
  position: relative;
  z-index: 1;
  padding: 30px;
  padding-right: 72px;
}

.service-modern-card h3 {
  color: var(--secondary-color);
  font-size: 25px;
  line-height: 1.15;
  margin: 8px 0 12px;
}

.service-modern-card p {
  margin: 0;
  color: var(--text-color-1);
  font-size: 15px;
  line-height: 1.55;
}

.service-modern-card > a {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  background: var(--heading-color-1);
  font-size: 26px;
  transition: 0.3s;
}

.service-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(4, 26, 47, 0.16);
}

.service-modern-card:hover > img {
  transform: scale(1.05);
}

.service-modern-card:hover > a {
  color: var(--accent-color);
  transform: translateX(4px);
}

.executive-services {
  background: #f5f5f7;
  position: relative;
  overflow: hidden;
}

.executive-services::before {
  content: none;
}

.executive-services .b-container {
  position: relative;
  z-index: 1;
}

.executive-services-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.executive-services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 40px;
  align-items: end;
}

.executive-services-heading h6 {
  grid-column: 1 / -1;
}

.executive-services-heading h2 {
  max-width: 900px;
}

.executive-services-heading h2 .text-heading-color-1 {
  color: var(--primary-color) !important;
}

.executive-services-heading p {
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1.75;
}

.executive-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.executive-service-row {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-rows: 286px auto;
  grid-template-columns: 1fr var(--button-icon-size);
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background-color: white;
  color: var(--secondary-color);
  transition: transform 0.32s ease, background-color 0.32s ease, box-shadow 0.32s ease;
}

.executive-service-row:hover {
  color: var(--secondary-color);
  transform: translateY(-8px);
  background-color: white;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.executive-service-row::before {
  content: "";
  position: absolute;
  left: 28px;
  right: max(24px, calc((100vw - 1320px) / 2 + 24px));
  bottom: 0;
  height: 5px;
  background-color: var(--heading-color-3);
  z-index: 2;
}

.executive-service-no {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 28px;
  width: auto;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-color: var(--heading-color-3);
  color: var(--secondary-color);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.executive-service-image {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  height: 286px;
  overflow: hidden;
  border-radius: 0;
  background: var(--primary-color);
}

.executive-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.06);
  transition: 0.5s ease;
}

.executive-service-copy h3 {
  margin: 0 0 12px;
  color: var(--primary-color);
  font-size: 27px;
  line-height: 1.12;
}

.executive-service-copy p {
  margin: 0;
  color: var(--primary-color);
  max-width: none;
  font-size: 15px;
  line-height: 1.68;
}

.executive-service-copy {
  grid-column: 1 / -1;
  grid-row: 2;
  padding: 34px 86px 38px 30px;
}

.executive-service-row > .btn-icon-primary {
  grid-column: 2;
  grid-row: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  align-self: end;
  flex: 0 0 auto;
  width: var(--button-icon-size);
  height: var(--button-icon-size);
  color: var(--heading-color-3);
  line-height: 1;
  transform: rotate(320deg);
  transition: 0.3s ease;
  margin: 0 28px 34px 0;
}

.executive-service-row > .btn-icon-primary:before {
  font-size: var(--button-icon-size);
}

.executive-service-row:hover .executive-service-image img {
  transform: scale(1.08);
}

.executive-service-row:hover > .btn-icon-primary {
  transform: rotate(360deg);
}

.executive-service-row.is-featured {
  min-height: 520px;
}

.executive-service-row.is-featured .executive-service-image {
  height: 286px;
}

.executive-service-row.is-featured .executive-service-copy h3 {
  font-size: 27px;
}
@keyframes premiumPanelReveal {
  from {
    opacity: 0.88;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes premiumImageReveal {
  from {
    opacity: 0.55;
    transform: scale(1.08);
    filter: saturate(0.75) contrast(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1) contrast(1);
  }
}
@keyframes premiumContentReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Sabit başvuru çekmecesi: üst şerit + kaydırma; gölge/gradient yok */
.floating-actions {
  position: fixed;
  right: max(24px, calc((100vw - 1320px) / 2 + 24px));
  left: auto;
  top: 108px;
  bottom: auto;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 410px;
  max-width: calc(100vw - 56px);
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
  transform: translateX(0);
  transition:
    width 0.32s ease,
    height 0.32s ease,
    padding 0.32s ease,
    border-radius 0.32s ease,
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.floating-actions.is-compact:not(:hover):not(:focus-within) {
  width: 250px;
  height: 56px;
  padding: 6px;
  border-color: rgba(190, 26, 42, 0.24);
  border-radius: 999px;
  transform: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.floating-actions.is-compact:not(:hover):not(:focus-within) .floating-actions-body {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.floating-actions-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  min-height: 48px;
  padding: 0 12px 0 14px;
  background-color: #222222;
  color: #ffffff;
  border-radius: 999px;
}

.floating-actions-head::before {
  content: "";
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow: 0 0 0 6px rgba(190, 26, 42, 0.16);
}

.floating-actions-title {
  flex: 1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.floating-actions.is-compact:not(:hover):not(:focus-within) .floating-actions-title {
  max-width: 176px;
  overflow: hidden;
  font-size: 12px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  line-height: 1;
  text-overflow: ellipsis;
}

.floating-actions-toggle-icon {
  font-size: 16px;
  line-height: 1;
  opacity: 0.88;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-actions.is-compact:not(:hover):not(:focus-within) .floating-actions-toggle-icon {
  display: inline-block;
  transform: rotate(180deg);
}

.floating-actions-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.floating-apply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #222222;
  background-color: #f5f5f7;
  border: 1px solid rgba(42, 42, 42, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.floating-apply:last-of-type {
  border-bottom: 0;
}

.floating-apply::after {
  content: "\203A";
  flex-shrink: 0;
  font-size: 17px;
  line-height: 1;
  color: var(--heading-color-3);
}

.floating-apply:hover,
.floating-apply:focus-visible {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.floating-apply:hover::after,
.floating-apply:focus-visible::after {
  color: var(--secondary-color);
}

@media (prefers-reduced-motion: reduce) {
  .floating-actions {
    transition: none;
    transform: none;
  }

  .floating-actions-toggle-icon {
    transition: none;
  }

  .floating-actions.is-compact:not(:hover):not(:focus-within) .floating-actions-body {
    pointer-events: auto;
  }
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: #fff;
  font-size: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fff;
  background-color: #1fb855;
}

.emergency-hotline-float {
  position: fixed;
  left: 18px;
  right: auto;
  bottom: 62px;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  min-width: 260px;
  max-width: min(304px, calc(100vw - 88px));
  padding: 8px 16px 8px 10px;
  border-radius: 4px;
  color: var(--secondary-color);
  background-color: #c91525;
  text-decoration: none;
  border: 1px solid rgba(201, 21, 37, 0.35);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  isolation: isolate;
  animation: emergencyHotlineFloat 2.4s ease-in-out infinite;
}

.emergency-hotline-float::before,
.emergency-hotline-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(201, 21, 37, 0.5);
  z-index: -1;
  animation: emergencyHotlinePulse 2.2s ease-out infinite;
}

.emergency-hotline-float::after {
  animation-delay: 0.7s;
}

.emergency-hotline-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c91525;
  background-color: #fff;
  font-size: 18px;
  flex: 0 0 40px;
}

.emergency-hotline-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.1;
}

.emergency-hotline-text small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.emergency-hotline-text strong {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.emergency-hotline-float:hover,
.emergency-hotline-float:focus-visible {
  color: #fff;
  background-color: #a90f1f;
  transform: translateY(-3px);
  animation-play-state: paused;
}

@keyframes emergencyHotlinePulse {
  0% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes emergencyHotlineFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .emergency-hotline-float,
  .emergency-hotline-float::before,
  .emergency-hotline-float::after {
    animation: none;
  }
}
@media only screen and (min-width: 991.98px) {
  .dropdown-submenu::after {
    content: "";
    position: absolute;
    top: -12px;
    left: 100%;
    width: 32px;
    height: calc(100% + 24px);
    pointer-events: auto;
    z-index: 1050;
  }

  .dropdown:hover .dropdown-submenu > .dropdown-menu {
    display: none !important;
  }

  .dropdown:hover .dropdown-submenu:hover > .dropdown-menu,
  .dropdown:hover .dropdown-submenu:focus-within > .dropdown-menu {
    display: block !important;
    position: absolute;
    top: 0 !important;
    left: calc(100% - 1px) !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    z-index: 1060;
  }
}
@media only screen and (max-width: 991.98px) {
  .dropdown-submenu > .dropdown-menu {
    position: static !important;
    display: block;
    width: 100%;
    margin-left: 0;
    padding-left: 15px;
    box-shadow: none;
  }
  .header-logo {
    max-width: 150px;
  }
  .premium-service-showcase {
    grid-template-columns: 1fr;
  }
  .premium-service-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .premium-service-panels,
  .premium-service-media,
  .premium-service-content {
    min-height: auto;
  }
  .premium-service-media {
    height: 360px;
  }
  .premium-service-content {
    padding: 34px;
  }
  .premium-service-content h3 {
    font-size: 34px;
  }
  .premium-blog-intro {
    max-width: none;
    margin-left: 0;
  }
  .premium-blog-layout,
  .premium-blog-featured {
    grid-template-columns: 1fr;
  }
  .premium-blog-featured {
    min-height: auto;
  }
  .premium-blog-image {
    height: 360px;
  }
  .premium-blog-featured-content {
    padding: 36px;
  }
  .premium-blog-featured h3 {
    font-size: 34px;
  }
  .premium-blog-card {
    grid-template-columns: 220px 1fr;
  }
  .elite-process-board {
    padding: 0;
  }
  .elite-process-head {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 34px;
  }
  .elite-process-intro {
    max-width: none;
  }
  .elite-process-visual {
    max-height: none;
    min-height: 320px;
  }
  .elite-process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .elite-process-step-card {
    min-height: auto;
    padding: 34px 30px;
  }
  .elite-process-step-no {
    font-size: 60px;
  }
  .about-performance-panel,
  .about-identity-content {
    padding: 34px;
  }
  .about-performance-panel::before {
    left: 34px;
  }
  .about-performance-panel h2 {
    max-width: none;
    font-size: 36px;
  }
  .about-stat-grid,
  .about-value-grid {
    grid-template-columns: 1fr;
  }
  .about-values-head,
  .about-values-feature {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .about-values-head h2 {
    max-width: none;
    font-size: 40px;
  }
  .about-values-intro {
    max-width: none;
    justify-self: stretch;
  }
  .about-mission-card {
    min-height: auto;
    padding: 38px;
  }
  .about-mission-card h3 {
    font-size: 36px;
  }
  .about-stat-card {
    min-height: 180px;
  }
  .about-stat-card::before,
  .about-stat-card:first-child::before {
    left: 28px;
  }
  .about-identity-media,
  .about-identity-media img {
    min-height: 420px;
  }
  .about-check-grid {
    grid-template-columns: 1fr;
  }
  .floating-actions {
    right: 12px !important;
    left: auto !important;
    top: 102px !important;
    bottom: auto !important;
    min-width: 0;
    width: min(360px, calc(100vw - 24px));
    max-width: min(360px, calc(100vw - 24px));
    transform: none;
  }
  .floating-actions-head {
    min-height: 48px;
    padding: 0 14px;
  }
  .floating-actions-title {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .floating-apply {
    padding: 10px 14px;
    font-size: 12px;
    min-height: 44px;
  }
  .whatsapp-float {
    right: 10px;
    bottom: 10px;
    width: 48px;
    height: 48px;
  }
  .emergency-hotline-float {
    left: 12px;
    right: auto;
    bottom: 58px;
    min-height: 48px;
    min-width: 0;
    max-width: min(280px, calc(100vw - 80px));
    padding: 7px 12px 7px 7px;
    gap: 9px;
  }
  .emergency-hotline-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 15px;
  }
  .emergency-hotline-text small {
    font-size: 9px;
  }
  .emergency-hotline-text strong {
    font-size: 14px;
  }
}

@media only screen and (max-width: 576.98px) {
  .premium-service-tabs {
    grid-template-columns: 1fr;
  }
  .premium-service-content {
    padding: 28px;
  }
  .premium-service-content h3 {
    font-size: 30px;
  }
  .premium-blog-image {
    height: 300px;
  }
  .premium-blog-featured-content,
  .premium-blog-card-content {
    padding: 28px;
  }
  .premium-blog-card {
    grid-template-columns: 1fr;
  }
  .premium-blog-card-image {
    height: 220px;
  }
  .premium-blog-featured h3 {
    font-size: 30px;
  }
  .premium-blog-card h4 {
    font-size: 22px;
  }
  .elite-process-board {
    padding: 0;
  }
  .elite-process-visual {
    min-height: 260px;
    max-height: none;
  }
  .elite-process-visual-img {
    height: 280px;
  }
  .elite-process-step-card { padding: 28px 24px; }
  .elite-process-step-no {
    font-size: 48px;
  }
  .elite-process-step-card { padding: 28px 24px; }
  .elite-process-step-card h4 {
    font-size: 22px;
  }
  .about-performance-panel,
  .about-identity-content,
  .about-mission-card {
    padding: 28px;
  }
  .about-values-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .about-values-shell {
    gap: 24px;
  }
  .about-values-head h2 {
    font-size: 31px;
  }
  .about-mission-card {
    border-radius: 18px;
  }
  .about-mission-card h3 {
    font-size: 30px;
  }
  .about-value-card h4 {
    font-size: 22px;
  }
  .executive-service-list {
    grid-template-columns: 1fr;
  }
  .executive-service-row,
  .executive-service-row.is-featured {
    grid-template-rows: 226px auto;
  }
  .executive-service-image,
  .executive-service-row.is-featured .executive-service-image {
    height: 226px;
  }
  .executive-service-copy {
    padding: 26px 68px 32px 22px;
  }
  .about-performance-panel::before {
    left: 28px;
    width: 72px;
  }
  .about-performance-panel h2 {
    font-size: 30px;
  }
  .about-stat-card {
    padding: 30px 24px 26px;
  }
  .about-stat-card::before,
  .about-stat-card:first-child::before {
    left: 24px;
    top: 30px;
  }
  .about-stat-card strong {
    font-size: 48px;
  }
  .about-stat-card,
  .about-value-card {
    min-height: auto;
  }
  .about-identity-media,
  .about-identity-media img {
    min-height: 340px;
  }
  .about-identity-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }
  .about-identity-badge span {
    font-size: 38px;
  }
  .premium-blog-topics {
    align-items: flex-start;
    flex-direction: column;
  }
  .floating-actions {
    right: 12px !important;
    left: auto !important;
    top: 92px !important;
    bottom: auto !important;
    width: min(286px, calc(100vw - 24px));
    max-width: min(286px, calc(100vw - 24px));
    transform: none;
  }
  .floating-actions-head {
    min-height: 46px;
    padding: 0 12px;
  }
  .floating-actions-title {
    font-size: 9px;
  }
  .floating-apply {
    padding: 10px 12px;
    font-size: 12px;
  }
  .floating-actions.is-compact:not(:hover):not(:focus-within) {
    width: 206px;
    height: 54px;
    max-width: min(206px, calc(100vw - 24px));
    transform: none;
  }
  .floating-actions-body {
    grid-template-columns: 1fr;
  }
  .emergency-hotline-float {
    left: 10px;
    bottom: 54px;
    max-width: min(260px, calc(100vw - 68px));
  }
  .emergency-hotline-text small {
    letter-spacing: 0.05em;
  }
}

/* Restored fixed application drawer */
.floating-actions {
  position: fixed !important;
  left: auto !important;
  right: 18px !important;
  top: auto !important;
  bottom: 0 !important;
  z-index: 998;
  width: 270px !important;
  max-width: calc(100vw - 28px) !important;
  height: auto !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  background-color: #222222;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none !important;
  transition: none;
}

.floating-actions-head {
  min-height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #ffffff;
  background-color: #222222;
  border-radius: 0;
}

.floating-actions-head::before {
  display: none;
}

.floating-actions-title {
  flex: 1;
  max-width: none !important;
  overflow: visible !important;
  font-size: 11px !important;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: clip !important;
}

.floating-actions-toggle-icon {
  display: inline-block;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
  opacity: 0.9;
  transform: none !important;
}

.floating-actions-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: #ffffff;
  transition: max-height 0.24s ease, opacity 0.18s ease, visibility 0.18s ease;
}

.floating-actions:hover .floating-actions-body,
.floating-actions:focus-within .floating-actions-body {
  max-height: 140px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.floating-actions:hover .floating-actions-toggle-icon,
.floating-actions:focus-within .floating-actions-toggle-icon {
  transform: rotate(180deg) !important;
}

.floating-actions.is-compact:not(:hover):not(:focus-within) .floating-actions-body {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.floating-apply {
  min-height: 44px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #222222;
  background-color: #ffffff;
  border: 0;
  border-top: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.floating-apply::after {
  content: "\203A";
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1;
}

.floating-apply:hover,
.floating-apply:focus-visible {
  color: #ffffff;
  background-color: var(--primary-color);
}

.floating-apply:hover::after,
.floating-apply:focus-visible::after {
  color: #ffffff;
}

@media (max-width: 575.98px) {
  .floating-actions {
    left: auto !important;
    right: 10px !important;
    width: 190px !important;
    max-width: calc(100vw - 20px) !important;
  }

  .floating-actions-title {
    font-size: 10px !important;
  }
}

.whatsapp-float {
  right: 18px;
  bottom: 64px;
}

.emergency-hotline-float {
  left: 18px;
  bottom: 14px;
}

@media (max-width: 991.98px) {
  .whatsapp-float {
    right: 12px;
    bottom: 62px;
  }

  .emergency-hotline-float {
    left: 12px;
    bottom: 12px;
  }
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    right: 10px;
    bottom: 58px;
  }

  .emergency-hotline-float {
    left: 10px;
    bottom: 10px;
    max-width: min(260px, calc(100vw - 78px));
  }
}

.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  object-fit: cover;
  transform: translate(-50%, -50%);
  display: block;
  pointer-events: none;
}

.home-hero-slider-section {
  position: relative;
  min-height: clamp(680px, 100vh, 920px);
  overflow: hidden;
  background-color: #111111;
}

.home-hero-slider,
.home-hero-slider .slick-list,
.home-hero-slider .slick-track,
.home-hero-slide {
  min-height: clamp(680px, 100vh, 920px);
}

.home-hero-slider {
  position: relative;
  width: 100%;
}

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

.home-hero-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 5.8s ease;
}

.home-hero-slider .slick-current .home-hero-slide-image {
  transform: scale(1.08);
}

.home-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 36%, rgba(0, 0, 0, 0.22) 66%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.28) 100%);
  z-index: 1;
}

.home-hero-slide-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(680px, 100vh, 920px);
  display: flex;
  align-items: center;
  padding-top: 118px;
  padding-right: 88px;
  padding-bottom: 84px;
  padding-left: 88px;
}

.home-hero-slide-copy {
  width: min(620px, 100%);
  color: #ffffff;
}

.home-hero-slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.home-hero-slide-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  flex-shrink: 0;
  background-color: var(--primary-color);
}

.home-hero-slide h1 {
  margin: 0;
  color: #ffffff;
  max-width: 580px;
  font-size: clamp(42px, 4.7vw, 74px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.home-hero-slide p {
  width: min(520px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.58;
}

.home-hero-slide-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.home-hero-slide-btn {
  min-width: 206px;
  box-shadow: none;
}

.home-hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 0 20px;
  color: var(--primary-color);
  background-color: #ffffff;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.home-hero-phone i {
  color: var(--primary-color);
  font-size: 18px;
  transition: color 0.2s ease;
}

.home-hero-phone span {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.home-hero-phone:hover,
.home-hero-phone:focus-visible {
  color: #ffffff !important;
  background-color: var(--heading-color-3) !important;
}

.home-hero-phone:hover i,
.home-hero-phone:focus-visible i,
.home-hero-phone:hover span,
.home-hero-phone:focus-visible span {
  color: #ffffff !important;
}

.home-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-size: 42px;
  transform: translateY(-50%);
  box-shadow: none;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  opacity: 0.86;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.home-hero-arrow:hover,
.home-hero-arrow:focus-visible {
  color: var(--primary-color);
  background-color: transparent;
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.home-hero-arrow-prev {
  left: max(24px, calc((100vw - 1320px) / 2 - 62px));
}

.home-hero-arrow-next {
  right: max(24px, calc((100vw - 1320px) / 2 - 62px));
}

.home-hero-slider .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(-50%);
}

.home-hero-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.home-hero-slider .slick-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  overflow: hidden;
  color: transparent;
  background-color: rgba(255, 255, 255, 0.38);
  border: 0;
  border-radius: 999px;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.home-hero-slider .slick-dots .slick-active button {
  width: 58px;
  background-color: var(--primary-color);
}

.certificates-section {
  background-color: #f5f5f6;
}

.certificates-head {
  width: min(760px, 100%);
  margin-bottom: 42px;
}

.certificates-head h6 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificates-head h2 {
  margin-top: 14px;
  color: #222222;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.05;
}

.certificates-head p {
  width: min(620px, 100%);
  margin-top: 18px;
  color: #5f6670;
  font-size: 18px;
  line-height: 1.65;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

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

.certificate-card a {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: #222222;
  background-color: #ffffff;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.certificate-card a:hover,
.certificate-card a:focus-visible {
  border-color: rgba(201, 21, 37, 0.36);
  transform: translateY(-6px);
}

.certificate-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  padding: 18px;
  background-color: #f8f8f8;
}

.certificate-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certificate-title {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: #222222;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.certificate-view {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.certificate-card a:hover .certificate-view,
.certificate-card a:focus-visible .certificate-view {
  opacity: 1;
  transform: translateY(0);
}

@media only screen and (max-width: 1199.98px) {
  .certificates-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767.98px) {
  .certificates-head {
    margin-bottom: 28px;
  }

  .certificates-head h2 {
    font-size: 34px;
  }

  .certificates-head p {
    font-size: 16px;
  }

  .certificates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .certificate-media {
    padding: 12px;
  }

  .certificate-title {
    min-height: 58px;
    padding: 12px 13px;
    font-size: 13px;
  }

  .certificate-view {
    display: none;
  }
}

@media only screen and (max-width: 420px) {
  .certificates-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 1199.98px) {
  .home-hero-slide-copy {
    width: min(560px, 100%);
  }

  .home-hero-slide-inner {
    padding-right: 74px;
    padding-left: 74px;
  }

  .home-hero-slide h1 {
    font-size: clamp(40px, 6vw, 62px);
  }

  .home-hero-arrow {
    width: 34px;
    height: 64px;
    font-size: 34px;
  }

  .home-hero-arrow-prev {
    left: 22px;
  }

  .home-hero-arrow-next {
    right: 22px;
  }
}

@media only screen and (max-width: 767.98px) {
  .home-hero-slider-section,
  .home-hero-slider,
  .home-hero-slider .slick-list,
  .home-hero-slider .slick-track,
  .home-hero-slide {
    min-height: 640px;
  }

  .home-hero-slide-overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.46) 58%, rgba(0, 0, 0, 0.2) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.28) 100%);
  }

  .home-hero-slide-inner {
    min-height: 640px;
    align-items: flex-end;
    padding-top: 104px;
    padding-right: 24px;
    padding-bottom: 112px;
    padding-left: 24px;
  }

  .home-hero-slide-copy {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .home-hero-slide-kicker {
    justify-content: center;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .home-hero-slide-kicker::before {
    width: 30px;
  }

  .home-hero-slide h1 {
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
    font-size: 38px;
    line-height: 1.05;
  }

  .home-hero-slide p {
    margin-top: 18px;
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
    line-height: 1.5;
  }

  .home-hero-slide-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    width: min(360px, 100%);
    margin-right: auto;
    margin-top: 24px;
    margin-left: auto;
  }

  .home-hero-slide-btn,
  .home-hero-phone {
    width: 100%;
    justify-content: center;
  }

  .home-hero-arrow {
    top: auto;
    bottom: 28px;
    width: 46px;
    height: 46px;
    color: #222222;
    background-color: rgba(255, 255, 255, 0.96);
    border-radius: 50%;
    font-size: 18px;
    text-shadow: none;
    transform: none;
  }

  .home-hero-arrow:hover,
  .home-hero-arrow:focus-visible {
    color: #ffffff;
    background-color: var(--primary-color);
    transform: scale(1.04);
  }

  .home-hero-arrow-prev {
    left: 18px;
  }

  .home-hero-arrow-next {
    right: 18px;
  }

  .home-hero-slider .slick-dots {
    bottom: 43px;
  }

  .home-hero-slider .slick-dots button {
    width: 22px;
  }

  .home-hero-slider .slick-dots .slick-active button {
    width: 38px;
  }
}

@media only screen and (max-width: 479.98px) {
  .home-hero-slider-section,
  .home-hero-slider,
  .home-hero-slider .slick-list,
  .home-hero-slider .slick-track,
  .home-hero-slide,
  .home-hero-slide-inner {
    min-height: 620px;
  }

  .home-hero-slide h1 {
    max-width: 330px;
    font-size: 31px;
  }

  .home-hero-slide p {
    font-size: 14px;
  }

  .home-hero-phone span {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1199.98px) {
  .quote-head,
  .quote-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .package-detail-hero,
  .package-detail-grid,
  .package-section-head {
    grid-template-columns: 1fr;
  }

  .package-picker {
    position: relative;
    top: auto;
    height: auto;
  }

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

  .executive-services-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .service-directory-head,
  .service-directory-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-card,
  .service-side-list,
  .service-modern-card {
    grid-column: auto;
  }

  .service-side-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-modern-card {
    min-height: 340px;
  }
}

@media only screen and (max-width: 767.98px) {
  .news-detail-sidebar {
    display: flex;
  }

  .news-detail-article > h2 {
    font-size: 34px;
  }

  .news-detail-image {
    height: 300px;
  }

  .news-support-card {
    min-height: auto;
  }

  .package-detail-banner {
    min-height: 500px;
    padding-top: 150px;
    padding-bottom: 58px;
    background-position: 58% center;
  }

  .package-detail-banner h1 {
    font-size: 36px;
  }

  .package-detail-banner-kicker {
    font-size: 18px;
  }

  .package-detail-banner-desc {
    margin-top: 22px;
    font-size: 18px;
  }

  .package-detail-banner-price {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
    padding: 22px;
  }

  .package-detail-banner-price strong {
    font-size: 40px;
  }

  .package-detail-banner-btn {
    width: 100%;
  }

  .footer {
    padding: 14px;
  }

  .footer > .b-container {
    border-radius: 20px 20px 0 0;
    padding: 0 22px 18px;
  }

  .footer > .b-container > .row:first-child {
    min-height: auto;
    margin-right: -22px;
    margin-left: -22px;
    padding: 38px 22px;
  }

  .footer > .b-container > .row:first-child h3 {
    font-size: 30px;
    text-align: left !important;
  }

  .footer-cta-desc {
    font-size: 16px;
  }

  .footer .form.subscribe {
    flex-direction: row !important;
    max-width: none;
    margin-top: 12px;
  }

  .footer .form.subscribe::before {
    width: 48px;
    padding-left: 10px;
    font-size: 20px;
  }

  .footer .form.subscribe input {
    min-height: 62px;
    padding: 0 8px;
  }

  .footer .form.subscribe .btn-cta-form {
    width: 116px !important;
    min-height: 62px;
    font-size: 14px;
  }

  .footer-subscribe-note {
    margin-left: 0;
    font-size: 13px;
  }

  .footer .ptpb-120 {
    padding-top: 38px !important;
  }

  .footer-brand-col,
  .footer-link-col {
    padding-right: 0 !important;
    padding-left: 0 !important;
    border-left: 0;
  }

  .footer-brand-col p {
    max-width: none;
  }

  .footer-link-col h4 {
    justify-content: flex-start;
  }

  .footer-link-col ul {
    align-items: stretch !important;
  }

  .footer-contact-row {
    margin-top: 20px;
    padding: 12px;
  }

  .footer-contact-item {
    padding: 12px 0;
  }

  .footer > .row {
    border-radius: 0 0 20px 20px;
  }

  .footer .border-top-color {
    width: calc(100% - 44px);
  }

  .home-partner-cta-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-partner-cta-panel {
    min-height: auto;
    border-radius: 22px;
    padding: 38px 24px 120px;
    gap: 34px;
  }

  .home-partner-cta-panel::after {
    right: -20%;
    bottom: -105px;
    height: 180px;
  }

  .home-partner-cta-kicker {
    gap: 16px;
    margin-bottom: 24px;
    font-size: 13px;
  }

  .home-partner-cta-kicker::before {
    width: 36px;
  }

  .home-partner-cta-title {
    font-size: 40px;
  }

  .home-partner-cta-text {
    margin-top: 20px;
    font-size: 18px;
  }

  .home-partner-cta-actions {
    gap: 16px;
  }

  .home-partner-cta-btn {
    min-height: 70px;
    grid-template-columns: 48px minmax(0, 1fr) 56px;
    gap: 12px;
    padding: 7px 8px 7px 12px;
  }

  .home-partner-cta-leading {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .home-partner-cta-btn .btn-text {
    font-size: 18px;
  }

  section.our-partners {
    margin-bottom: 0;
    padding: 0 14px;
  }

  section.our-partners .client-wrapper {
    width: calc(100vw - 28px);
    padding: 18px;
    border-radius: 0 0 20px 20px;
    overflow-x: auto;
  }

  section.our-partners .client-logos {
    width: max-content;
    min-width: 100%;
    grid-auto-columns: 128px;
    gap: 18px;
  }

  section.our-partners .client-logos img {
    height: 34px;
  }

  section.services {
    padding-top: 66px;
  }

  .premium-services-section h2 {
    font-size: 40px;
  }

  .premium-service-tabs {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .premium-service-showcase {
    border-radius: 16px;
  }

  .premium-service-media {
    height: 280px;
  }

  .premium-service-content {
    padding: 28px;
  }

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

  .home-why-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .home-why-head {
    margin-bottom: 10px;
  }

  .home-why-title {
    font-size: 42px;
  }

  .home-why-desc {
    font-size: 17px;
  }

  .home-why-grid {
    gap: 18px;
  }

  .home-why-grid .home-why-card {
    border-radius: 22px;
    padding: 30px 26px;
  }

  .home-why-grid .why-wrap h4 {
    font-size: 25px;
  }

  .home-why-grid .why-wrap p {
    font-size: 17px;
  }

  .quote-premium-intro {
    gap: 18px;
    margin-bottom: 28px;
  }

  .quote-step-card,
  .quote-side-card,
  .dealer-application-intro,
  .dealer-application-form,
  .legal-content-card {
    padding: 26px;
  }

  .supplier-type-grid {
    grid-template-columns: 1fr;
  }

  .quote-bottom-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .quote-side-card .btn-cta-primary {
    width: 100%;
  }

  .quote-bottom-link {
    min-width: 0;
  }

  .footer-bottom-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-contact-item {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: auto;
    padding-right: 0;
    text-align: left;
  }

  .footer-contact-item i {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .footer-contact-row .col-xl-3 .footer-contact-item strong {
    white-space: normal;
  }

  .quote-step-head {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .quote-step-head > span {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .quote-switches {
    gap: 18px;
  }

  .quote-head,
  .quote-form {
    padding: 24px;
  }

  .quote-title {
    align-items: flex-start;
  }

  .quote-title h2 {
    font-size: 24px;
  }

  .quote-consents {
    grid-template-columns: 1fr;
    padding: 20px;
  }

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

  .contact-premium-item {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 18px;
  }

  .contact-premium-item i {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .news-list-image {
    height: 250px;
  }

  .news-list-content {
    padding: 24px;
  }

  .news-list-content h3 {
    font-size: 23px;
  }

  .news-detail-article > h2 {
    font-size: 34px;
  }

  .news-detail-lead {
    font-size: 18px;
  }

  .news-detail-image {
    height: 320px;
  }

  .package-detail-summary h2 {
    font-size: 34px;
  }

  .package-price-panel,
  .package-info-band,
  .package-check-list > div {
    grid-template-columns: 1fr;
  }

  .package-price-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-detail-media {
    min-height: 340px;
  }

  .package-limit-grid {
    grid-template-columns: 1fr;
  }

  .executive-service-row,
  .executive-service-row.is-featured {
    min-height: auto;
    grid-template-rows: 250px auto;
    grid-template-columns: 1fr var(--md-button-icon-size);
    gap: 0;
    padding: 0;
  }

  .executive-service-image {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: 250px;
  }

  .executive-service-row.is-featured .executive-service-image {
    height: 250px;
  }

  .executive-service-no {
    grid-column: auto;
    grid-row: auto;
    top: 0;
    left: 24px;
    width: auto;
    height: 52px;
    padding: 0 16px;
    font-size: 14px;
  }

  .executive-service-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 28px 74px 34px 26px;
  }

  .executive-service-copy h3,
  .executive-service-row.is-featured .executive-service-copy h3 {
    font-size: 24px;
  }

  .executive-service-row > .btn-icon-primary {
    grid-column: 2;
    grid-row: 2;
    width: var(--md-button-icon-size);
    height: var(--md-button-icon-size);
    margin: 0 24px 32px 0;
  }

  .executive-service-row > .btn-icon-primary:before {
    font-size: var(--md-button-icon-size);
  }

  .executive-service-row:hover {
    padding-left: 0;
  }

  .service-directory-head {
    gap: 20px;
    margin-bottom: 32px;
  }

  .service-feature-card {
    min-height: 520px;
  }

  .service-feature-card::after {
    background: linear-gradient(180deg, rgba(4, 26, 47, 0.18), rgba(4, 26, 47, 0.92));
  }

  .service-feature-content {
    padding: 30px;
  }

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

  .service-side-list {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .service-modern-card {
    min-height: 320px;
  }

  .service-modern-card > div {
    padding: 24px;
    padding-right: 70px;
  }

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

@media only screen and (max-width: 576.98px) {
  .executive-service-list {
    grid-template-columns: 1fr;
  }
}

.breadcrumb {
  margin-bottom: 0 !important;
}

.service-detail-section {
  padding-bottom: 90px;
}

.legacy-service-flow-block {
  display: none !important;
}

.service-detail-flow-section {
  background-color: var(--secondary-color);
  padding-top: 96px;
  padding-bottom: 118px;
}

.service-detail-flow {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.service-detail-flow-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: end;
  gap: 42px;
  padding-bottom: 18px;
}

.service-detail-flow-head > span {
  color: var(--heading-color-3);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-detail-flow-head h2 {
  max-width: 920px;
  margin: 0;
  color: var(--primary-color);
  font-size: 52px;
  line-height: 1.05;
}

.service-flow-block {
  border-radius: 28px;
  background-color: #ffffff;
  padding: 42px;
}

.service-flow-steps {
  background-color: var(--primary-color);
}

.service-flow-title {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
}

.service-flow-title > span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--heading-color-3);
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-flow-title h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 38px;
  line-height: 1.1;
}

.service-flow-steps .service-flow-title h3 {
  color: var(--secondary-color);
}

.service-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-step-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 20px;
  background-color: #343434;
  padding: 30px;
  color: var(--secondary-color);
}

.service-step-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-step-card-head > span {
  flex: 0 0 auto;
  color: var(--heading-color-3);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-step-card h4 {
  margin: 0;
  color: var(--secondary-color);
  font-size: 23px;
  line-height: 1.16;
}

.service-step-card p {
  margin: 0;
  color: var(--text-color-1);
  font-size: 15px;
  line-height: 1.7;
}

.service-step-card ul,
.service-case-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.service-step-card li,
.service-case-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  font-size: 15px;
  line-height: 1.55;
}

.service-step-card li {
  color: var(--secondary-color);
}

.service-step-card li i {
  color: var(--heading-color-1);
  font-size: 18px;
  line-height: 1.4;
}

.service-case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-case-list li {
  min-height: 72px;
  align-items: center;
  border-radius: 14px;
  background-color: #f5f5f7;
  color: var(--primary-color);
  padding: 18px 20px;
  font-weight: 600;
}

.service-case-list li i {
  color: var(--heading-color-3);
  font-size: 24px;
}

.service-reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-reason-card {
  min-height: 190px;
  border-radius: 20px;
  background-color: #f5f5f7;
  padding: 28px;
}

.service-reason-card > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.service-reason-card i {
  color: var(--heading-color-3);
  font-size: 22px;
}

.service-reason-card h5 {
  margin: 0;
  color: var(--primary-color);
  font-size: 21px;
}

.service-reason-card p {
  margin: 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.7;
}

.service-flow-faq .accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-flow-faq .accordion-item {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f5f5f7;
}

.service-flow-faq .accordion-button {
  min-height: 74px;
  background-color: #f5f5f7;
  color: var(--primary-color);
  font-weight: 700;
  box-shadow: none;
}

.service-flow-faq .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.service-flow-faq .accordion-body {
  background-color: #ffffff;
  color: var(--text-color);
  line-height: 1.75;
}

@media only screen and (max-width: 1199.98px) {
  .service-detail-flow-head,
  .service-step-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-flow-head h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767.98px) {
  .service-detail-flow-section {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .service-flow-block {
    padding: 28px;
    border-radius: 20px;
  }

  .service-flow-title,
  .service-case-list,
  .service-reason-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-flow-head h2,
  .service-flow-title h3 {
    font-size: 30px;
  }
}

/* Service detail flow - refined card layout */
.service-detail-flow-section {
  background-color: #ffffff;
  padding-top: 88px;
  padding-bottom: 108px;
}

.service-detail-flow {
  gap: 44px;
}

.service-detail-flow-head {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
  padding-bottom: 0;
  text-align: left;
}

.service-detail-flow-head h2 {
  max-width: 760px;
  font-size: 44px;
  line-height: 1.08;
}

.service-flow-block {
  border-radius: 0;
  background-color: transparent;
  padding: 0;
}

.service-flow-steps {
  background-color: transparent;
}

.service-flow-title {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.service-flow-title > span {
  width: 38px;
  height: 38px;
  background-color: rgba(190, 26, 42, 0.08);
  color: var(--heading-color-3);
  font-size: 12px;
}

.service-flow-title h3,
.service-flow-steps .service-flow-title h3 {
  color: var(--primary-color);
  font-size: 32px;
}

.service-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-step-card {
  min-height: 320px;
  gap: 22px;
  border-radius: 8px;
  background-color: #f5f5f7;
  padding: 28px 24px;
  color: var(--primary-color);
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.service-step-card:hover,
.service-reason-card:hover {
  transform: translateY(-6px);
  background-color: #ffffff;
}

.service-step-card-head {
  flex-direction: column;
  gap: 34px;
}

.service-step-card-head > span {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 2px solid var(--heading-color-3);
  border-radius: 50%;
  color: transparent;
  font-size: 0;
}

.service-step-card-head > span::before {
  content: "\F26E";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "bootstrap-icons";
  color: var(--heading-color-3);
  font-size: 25px;
  line-height: 1;
  background-color: #ffffff;
}

.service-step-card h4 {
  color: #141414;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.26;
}

.service-step-card p {
  color: #4f4f4f;
  line-height: 1.58;
}

.service-step-card li {
  color: #454545;
}

.service-step-card li i {
  color: var(--heading-color-3);
}

.service-case-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--primary-color);
}

.service-case-list li {
  min-height: 118px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: var(--secondary-color);
  padding: 26px 30px;
  font-size: 17px;
  line-height: 1.45;
}

.service-case-list li:nth-child(4n + 2),
.service-case-list li:nth-child(4n + 3) {
  background-color: #343434;
}

.service-case-list li i {
  color: #0f7a76;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  font-size: 25px;
}

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

.service-reason-card {
  position: relative;
  min-height: 245px;
  border: 0;
  border-radius: 24px;
  background-color: #f5f5f7;
  padding: 34px 34px 34px 96px;
  overflow: hidden;
  transition: transform 0.28s ease, background-color 0.28s ease;
}

.service-reason-card::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 34px;
  width: 36px;
  height: 5px;
  background-color: var(--heading-color-3);
}

.service-reason-card i {
  color: #0f7a76;
  position: absolute;
  top: 54px;
  left: 34px;
  font-size: 25px;
}

.service-reason-card:hover {
  transform: translateY(-6px);
  background-color: var(--primary-color);
}

.service-reason-card:hover h5,
.service-reason-card:hover p {
  color: var(--secondary-color);
}

.service-flow-faq .accordion-item {
  border: 0;
  border-radius: 0;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(42, 42, 42, 0.14);
}

.service-flow-faq .accordion-button {
  background-color: #ffffff;
  padding: 24px 0;
  font-size: 20px;
}

.service-flow-faq .accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: var(--heading-color-3);
}

.service-flow-faq .accordion-body {
  padding: 0 0 26px;
  background-color: #ffffff;
  color: var(--text-color);
  max-width: 920px;
}

@media only screen and (max-width: 1199.98px) {
  .service-step-grid,
  .service-case-list,
  .service-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media only screen and (max-width: 767.98px) {
  .service-detail-flow-head,
  .service-step-grid,
  .service-case-list,
  .service-reason-grid,
  .service-flow-title {
    grid-template-columns: 1fr;
  }

}

/* Service detail lower blocks - final premium overrides */
.service-flow-cases .service-case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border-radius: 0;
  overflow: hidden;
  background-color: transparent;
  padding-top: 20px;
}

.service-flow-cases .service-case-list li {
  min-height: 64px;
  align-items: center;
  border: 1px solid rgba(42, 42, 42, 0.12);
  border-radius: 999px;
  background-color: #ffffff;
  color: var(--primary-color);
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  transition: border-color 0.24s ease, transform 0.24s ease, background-color 0.24s ease;
}

.service-flow-cases .service-case-list li:nth-child(4n + 2),
.service-flow-cases .service-case-list li:nth-child(4n + 3) {
  background-color: #ffffff;
}

.service-flow-cases .service-case-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(190, 26, 42, 0.42);
  background-color: #fffafa;
}

.service-flow-cases .service-case-list li i {
  color: var(--heading-color-3);
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(190, 26, 42, 0.08);
  font-size: 20px;
}

.service-flow-reasons .service-reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-flow-reasons .service-reason-card {
  position: relative;
  min-height: 164px;
  border-radius: 14px;
  background-color: #f5f5f7;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.service-flow-reasons .service-reason-card::before {
  content: none;
}

.service-flow-reasons .service-reason-card i {
  position: static;
  color: var(--heading-color-3);
  font-size: 21px;
}

.service-flow-reasons .service-reason-card > div {
  align-items: flex-start;
  margin-bottom: 10px;
}

.service-flow-reasons .service-reason-card:hover {
  transform: translateY(-3px);
  background-color: #ffffff;
}

.service-flow-reasons .service-reason-card:hover h5,
.service-flow-reasons .service-reason-card:hover p {
  color: inherit;
}

.service-flow-faq .accordion {
  gap: 0;
}

.service-flow-faq .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.14);
  border-radius: 0;
  background-color: #ffffff;
}

.service-flow-faq .accordion-button,
.service-flow-faq .accordion-button:not(.collapsed) {
  min-height: 74px;
  padding: 24px 0;
  background-color: #ffffff;
  color: var(--primary-color);
  box-shadow: none;
  font-size: 20px;
}

.service-flow-faq .accordion-button:not(.collapsed) {
  color: var(--heading-color-3);
}

.service-flow-faq .accordion-body {
  max-width: 920px;
  padding: 0 0 26px;
  background-color: #ffffff;
  color: var(--text-color);
  line-height: 1.75;
}

@media only screen and (max-width: 767.98px) {
  .service-flow-cases .service-case-list,
  .service-flow-reasons .service-reason-grid {
    grid-template-columns: 1fr;
  }

  .service-flow-cases .service-case-list li:nth-child(4n + 2),
  .service-flow-cases .service-case-list li:nth-child(4n + 3) {
    background-color: #ffffff;
  }

  .service-flow-cases .service-case-list li:nth-child(even) {
    background-color: #ffffff;
  }
}

.bg-black {
  background-color: #1c1c1c !important;
}

.legacy-package-flow-block {
  display: none !important;
}

.package-detail-flow-section {
  background-color: #ffffff;
  padding-top: 88px;
  padding-bottom: 108px;
}

.package-detail-flow {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.package-detail-flow-head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
  text-align: left;
}

.package-detail-flow-head > span {
  color: var(--heading-color-3);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-detail-flow-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--primary-color);
  font-size: 44px;
  line-height: 1.08;
}

.package-flow-block {
  background-color: transparent;
}

.package-flow-title {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.package-flow-title > span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(190, 26, 42, 0.08);
  color: var(--heading-color-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.package-flow-title h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 32px;
  line-height: 1.1;
}

.package-flow-coverage {
  border-radius: 28px;
  background-color: var(--primary-color);
  padding: 42px;
}

.package-flow-coverage .package-flow-title h3 {
  color: var(--secondary-color);
}

.package-flow-coverage .package-flow-title > span {
  background-color: var(--heading-color-3);
  color: var(--secondary-color);
}

.package-coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.package-coverage-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 0;
  background-color: transparent;
  padding: 30px 30px 30px 0;
  color: var(--secondary-color);
  transition: background-color 0.28s ease, padding-left 0.28s ease;
}

.package-coverage-card:nth-child(2n) {
  padding-left: 30px;
}

.package-coverage-card:hover {
  padding-left: 18px;
  background-color: rgba(255, 255, 255, 0.04);
}

.package-coverage-card:nth-child(2n):hover {
  padding-left: 48px;
}

.package-coverage-card-head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.package-coverage-card-head > span {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: var(--heading-color-3);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.package-coverage-card h4 {
  margin: 0;
  color: var(--secondary-color);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.26;
}

.package-coverage-card p {
  color: var(--text-color-1);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  padding-left: 90px;
}

.package-mini-card p,
.package-flow-content {
  color: #4f4f4f;
  font-size: 15px;
  line-height: 1.65;
}

.package-mini-card p {
  margin: 0;
}

.package-coverage-card ul,
.package-chip-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.package-coverage-card li,
.package-chip-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  font-size: 15px;
  line-height: 1.55;
}

.package-coverage-card ul {
  padding-left: 90px;
}

.package-coverage-card li i,
.package-chip-list li i,
.package-mini-card i {
  color: var(--heading-color-3);
}

.package-chip-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 20px;
}

.package-chip-list li {
  min-height: 64px;
  align-items: center;
  border: 1px solid rgba(42, 42, 42, 0.12);
  border-radius: 999px;
  background-color: #ffffff;
  color: var(--primary-color);
  padding: 14px 18px;
  font-weight: 600;
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.package-chip-list li i {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(190, 26, 42, 0.08);
  font-size: 20px;
}

.package-mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.package-mini-card {
  min-height: 164px;
  border-radius: 14px;
  background-color: #f5f5f7;
  padding: 24px;
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.package-mini-card > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.package-mini-card h5 {
  margin: 0;
  color: var(--primary-color);
  font-size: 21px;
}

.package-flow-audience .package-mini-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background-color: #f5f5f7;
}

.package-flow-audience .package-mini-card {
  min-height: 260px;
  border-radius: 0;
  background-color: transparent;
  padding: 34px 30px;
}

.package-flow-audience .package-mini-card > div {
  margin-bottom: 16px;
}

.package-flow-audience .package-mini-card i {
  display: none;
}

.package-flow-audience .package-mini-card h5 {
  color: var(--primary-color);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 500;
}

.package-flow-audience .package-mini-card p {
  color: var(--text-color);
  font-size: 16px;
}

.package-flow-audience .package-mini-card:hover {
  background-color: #ffffff;
}

.package-flow-reasons .package-mini-card-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  border-radius: 0;
  overflow: visible;
  background-color: transparent;
}

.package-flow-reasons .package-mini-card {
  min-height: auto;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  border-radius: 18px;
  background-color: #ffffff;
  padding: 22px 26px;
}

.package-flow-reasons .package-mini-card:nth-child(even) {
  background-color: #f5f5f7;
}

.package-flow-reasons .package-mini-card:hover {
  transform: translateX(8px);
  background-color: #fffafa;
}

.package-flow-reasons .package-mini-card > div {
  display: contents;
}

.package-flow-reasons .package-mini-card i {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

.package-flow-reasons .package-mini-card h5 {
  grid-column: 2;
  margin-top: 4px;
}

.package-flow-reasons .package-mini-card p {
  grid-column: 2;
}

/* keep audience layout independent from shared mini-card rules */
.package-flow-audience .package-mini-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 14px;
}

.package-flow-reasons .package-mini-card i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(190, 26, 42, 0.08);
  color: var(--heading-color-3);
  font-size: 20px;
}

.package-flow-reasons .package-mini-card h5 {
  font-size: 23px;
  line-height: 1.18;
}

.package-flow-content {
  max-width: 980px;
}

.package-flow-faq .accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.package-flow-faq .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.14);
  border-radius: 0;
  background-color: #ffffff;
}

.package-flow-faq .accordion-button,
.package-flow-faq .accordion-button:not(.collapsed) {
  min-height: 74px;
  padding: 24px 0;
  background-color: #ffffff;
  color: var(--primary-color);
  box-shadow: none;
  font-size: 20px;
  font-weight: 700;
}

.package-flow-faq .accordion-button:not(.collapsed) {
  color: var(--heading-color-3);
}

.package-flow-faq .accordion-body {
  max-width: 920px;
  padding: 0 0 26px;
  background-color: #ffffff;
  color: var(--text-color);
  line-height: 1.75;
}

.package-flow-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: 18px;
  background-color: var(--primary-color);
  padding: 34px;
}

.package-flow-cta h3 {
  margin: 0 0 8px;
  color: var(--secondary-color);
  font-size: 30px;
}

.package-flow-cta p {
  margin: 0;
  color: var(--text-color-1);
}

@media only screen and (max-width: 1199.98px) {
  .package-coverage-grid,
  .package-chip-list,
  .package-mini-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767.98px) {
  .package-detail-flow-section {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .package-detail-flow-head h2,
  .package-flow-title h3 {
    font-size: 30px;
  }

  .package-flow-title,
  .package-coverage-grid,
  .package-chip-list,
  .package-mini-card-grid,
  .package-flow-audience .package-mini-card-grid,
  .package-flow-reasons .package-mini-card-grid,
  .package-flow-cta {
    grid-template-columns: 1fr;
  }

  .package-flow-audience .package-mini-card {
    min-height: auto;
    padding: 28px;
  }

  .package-flow-audience .package-mini-card h5 {
    font-size: 24px;
  }

  .package-flow-reasons .package-mini-card-grid {
    border-radius: 18px;
  }

  .package-flow-coverage {
    padding: 28px;
    border-radius: 20px;
  }

  .package-coverage-card,
  .package-coverage-card:nth-child(2n) {
    padding: 24px 0;
  }

  .package-coverage-card:hover,
  .package-coverage-card:nth-child(2n):hover {
    padding-left: 0;
  }

  .package-coverage-card-head {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .package-coverage-card p,
  .package-coverage-card ul {
    padding-left: 70px;
  }

  .package-flow-audience .package-mini-card-grid {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .package-flow-audience .package-mini-card {
    min-height: auto;
  }

  .package-flow-reasons .package-mini-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }
}

/* Compact package audience/reasons overrides */
.package-flow-audience .package-mini-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border-radius: 0;
  overflow: visible;
  background-color: transparent;
}

.package-flow-audience .package-mini-card {
  min-height: 50px;
  border-radius: 12px;
  background-color: #f5f5f7;
  padding: 22px 22px 22px 24px;
  border-left: 4px solid var(--heading-color-3);
}

.package-flow-audience .package-mini-card i {
  display: none;
}

.package-flow-audience .package-mini-card h5 {
  color: var(--primary-color);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.package-flow-audience .package-mini-card p {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.55;
}

.package-flow-audience .package-mini-card:hover {
  background-color: #ffffff;
}

.package-flow-reasons .package-mini-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-radius: 0;
  overflow: visible;
  background-color: transparent;
}

.package-flow-reasons .package-mini-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  border-radius: 12px;
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid rgba(42, 42, 42, 0.1);
}

.package-flow-reasons .package-mini-card:nth-child(even) {
  background-color: #ffffff;
}

.package-flow-reasons .package-mini-card:hover {
  transform: translateY(-3px);
  background-color: #fffafa;
}

.package-flow-reasons .package-mini-card i {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(190, 26, 42, 0.08);
  color: var(--heading-color-3);
  font-size: 18px;
}

.package-flow-reasons .package-mini-card h5 {
  grid-column: 2;
  margin: 0;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.25;
}

.package-flow-reasons .package-mini-card p {
  grid-column: 2;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.5;
}

@media only screen and (max-width: 1199.98px) {
  .package-flow-audience .package-mini-card-grid,
  .package-flow-reasons .package-mini-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767.98px) {
  .package-flow-audience .package-mini-card-grid,
  .package-flow-reasons .package-mini-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Restore package coverage to the first full-width card layout */
.package-flow-coverage {
  border-radius: 0;
  background-color: transparent;
  padding: 0;
}

.package-flow-coverage .package-flow-title h3 {
  color: var(--primary-color);
}

.package-flow-coverage .package-flow-title > span {
  background-color: rgba(190, 26, 42, 0.08);
  color: var(--heading-color-3);
}

.package-coverage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  border-top: 0;
}

.package-coverage-card,
.package-coverage-card:nth-child(2n) {
  min-height: 320px;
  gap: 22px;
  border: 0;
  border-radius: 8px;
  background-color: #f5f5f7;
  padding: 28px 24px;
  color: var(--primary-color);
  transition: transform 0.28s ease, background-color 0.28s ease;
}

.package-coverage-card:hover,
.package-coverage-card:nth-child(2n):hover {
  transform: translateY(-6px);
  padding-left: 24px;
  background-color: #ffffff;
}

.package-coverage-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}

.package-coverage-card-head > span {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 2px solid var(--heading-color-3);
  border-radius: 50%;
  color: transparent;
  font-size: 0;
}

.package-coverage-card-head > span::before {
  content: "\F26E";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "bootstrap-icons";
  color: var(--heading-color-3);
  font-size: 25px;
  line-height: 1;
  background-color: #ffffff;
}

.package-coverage-card h4 {
  color: #141414;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.26;
}

.package-coverage-card p,
.package-coverage-card ul {
  padding-left: 0;
}

.package-coverage-card p {
  color: #4f4f4f;
}

@media only screen and (max-width: 1199.98px) {
  .package-coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767.98px) {
  .package-coverage-grid {
    grid-template-columns: 1fr;
  }
}

/* Package detail flow synced with the final service detail styling */
.package-detail-flow-section {
  background-color: #ffffff;
  padding-top: 88px;
  padding-bottom: 108px;
}

.package-detail-flow {
  gap: 44px;
}

.package-detail-flow-head {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
  padding-bottom: 0;
  text-align: left;
}

.package-detail-flow-head h2 {
  max-width: 760px;
  font-size: 44px;
  line-height: 1.08;
}

.package-flow-block {
  border-radius: 0;
  background-color: transparent;
  padding: 0;
}

.package-flow-title {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.package-flow-title > span {
  width: 38px;
  height: 38px;
  background-color: rgba(190, 26, 42, 0.08);
  color: var(--heading-color-3);
  font-size: 12px;
}

.package-flow-title h3 {
  color: var(--primary-color);
  font-size: 32px;
}

.package-coverage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  border-top: 0;
}

.package-coverage-card,
.package-coverage-card:nth-child(2n) {
  min-height: 320px;
  gap: 22px;
  border: 0;
  border-radius: 8px;
  background-color: #f5f5f7;
  padding: 28px 24px;
  color: var(--primary-color);
  transition: transform 0.28s ease, background-color 0.28s ease;
}

.package-coverage-card:hover,
.package-coverage-card:nth-child(2n):hover {
  transform: translateY(-6px);
  padding-left: 24px;
  background-color: #ffffff;
}

.package-coverage-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}

.package-coverage-card-head > span {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 2px solid var(--heading-color-3);
  border-radius: 50%;
  color: transparent;
  font-size: 0;
}

.package-coverage-card-head > span::before {
  content: "\F26E";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "bootstrap-icons";
  color: var(--heading-color-3);
  font-size: 25px;
  line-height: 1;
  background-color: #ffffff;
}

.package-coverage-card h4 {
  color: #141414;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.26;
}

.package-coverage-card p,
.package-coverage-card ul {
  padding-left: 0;
}

.package-coverage-card p,
.package-mini-card p {
  color: #4f4f4f;
  font-size: 15px;
  line-height: 1.58;
}

.package-coverage-card li {
  color: #454545;
}

.package-coverage-card li i,
.package-chip-list li i,
.package-mini-card i {
  color: var(--heading-color-3);
}

.package-chip-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 20px;
}

.package-chip-list li {
  min-height: 64px;
  align-items: center;
  border: 1px solid rgba(42, 42, 42, 0.12);
  border-radius: 999px;
  background-color: #ffffff;
  color: var(--primary-color);
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.package-chip-list li:hover {
  transform: translateY(-3px);
  background-color: #ffffff;
}

.package-chip-list li i {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(190, 26, 42, 0.08);
  font-size: 20px;
}

.package-flow-audience .package-mini-card-grid,
.package-flow-reasons .package-mini-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-radius: 0;
  overflow: visible;
  background-color: transparent;
}

.package-flow-audience .package-mini-card,
.package-flow-reasons .package-mini-card,
.package-flow-reasons .package-mini-card:nth-child(even) {
  min-height: 50px;
  display: block;
  border: 0;
  border-radius: 14px;
  background-color: #f5f5f7;
  padding: 24px;
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.package-flow-audience .package-mini-card:hover,
.package-flow-reasons .package-mini-card:hover {
  transform: translateY(-3px);
  background-color: #ffffff;
}

.package-flow-audience .package-mini-card > div,
.package-flow-reasons .package-mini-card > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.package-flow-audience .package-mini-card i {
  display: none;
}

.package-flow-audience .package-mini-card h5,
.package-flow-reasons .package-mini-card h5 {
  margin: 0;
  color: var(--primary-color);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 600;
}

.package-flow-reasons .package-mini-card i {
  position: static;
  width: auto;
  height: auto;
  display: inline-flex;
  background-color: transparent;
  font-size: 21px;
}

.package-flow-reasons .package-mini-card p {
  color: var(--text-color);
}

@media only screen and (max-width: 1199.98px) {
  .package-coverage-grid,
  .package-chip-list,
  .package-flow-audience .package-mini-card-grid,
  .package-flow-reasons .package-mini-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767.98px) {
  .package-detail-flow-head,
  .package-flow-title,
  .package-coverage-grid,
  .package-chip-list,
  .package-flow-audience .package-mini-card-grid,
  .package-flow-reasons .package-mini-card-grid {
    grid-template-columns: 1fr;
  }

  .package-detail-flow-head h2,
  .package-flow-title h3 {
    font-size: 30px;
  }
}

.footer .footer-bottom-grid {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.footer .footer-rights {
  grid-column: 2;
  text-align: center;
}

.footer .footer-terms {
  grid-column: 3;
  justify-content: flex-end !important;
}

@media only screen and (max-width: 767.98px) {
  .footer .footer-bottom-grid {
    grid-template-columns: 1fr;
  }

  .footer .footer-rights,
  .footer .footer-terms {
    grid-column: 1;
  }

  .footer .footer-terms {
    justify-content: center !important;
  }
}
