:root {
  --primary-color: #504463;
  --secondary-color: #ffffff;
  --text-color: #707070;
  --accent-color: #dc1553;
  --white-color: #ffffff;
  --divider-color: #e3e3e3;
  --dark-divider-color: rgba(255, 255, 255, 0.15);
  --default-font: "Montserrat", sans-serif;
  --accent-font: "Unbounded", sans-serif;
}
a {
  text-decoration: none;
}
button {
  font: inherit;
}
p {
  margin: 0 0 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--accent-font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-color);
}
ul {
  margin: 0;
  padding: 0;
}
.col-12 {
  grid-column: span 12;
}
.col-lg-9 {
  grid-column: span 9;
}
.col-lg-8 {
  grid-column: span 8;
}
.col-lg-7 {
  grid-column: span 7;
}
.col-lg-6 {
  grid-column: span 6;
}
.col-lg-5 {
  grid-column: span 5;
}
.col-lg-4 {
  grid-column: span 4;
}
.col-lg-3 {
  grid-column: span 3;
}
.col-md-6,
.col-md-5,
.col-md-4,
.col-md-3,
.col-7,
.col-6,
.col-5 {
  grid-column: auto;
}
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
  color: #fff;
}
#loading-icon span {
  font-family: var(--accent-font);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}
#loading-icon small {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
.main-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
}

.header-sticky {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.main-header .navbar {
  min-height: 82px;
  padding: 0;
  background: #ffffff;
}

.main-header .container {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 82px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.navbar-brand img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 58px;
  object-fit: contain;
}

.main-menu {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 40px;
}

.main-menu .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 6px;
  margin: 0;
}

.main-menu .nav-item {
  display: flex;
  align-items: center;
}

.main-menu .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: #222222;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.main-menu .nav-link:hover,
.main-menu .nav-link:focus {
  color: #504463;
}

.main-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: #504463;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.main-menu .nav-link:hover::after,
.main-menu .nav-link:focus::after {
  transform: scaleX(1);
}

.header-btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 25px;
}

.header-btn .btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 25px;
  color: #ffffff;
  background: #dc1553;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.header-btn .btn-default:hover,
.header-btn .btn-default:focus {
  color: #ffffff;
  background: #504463;
  border-color: none;
}

.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  color: #222222;
  background: transparent;
  border: 1px solid #222222;
  border-radius: 4px;
  outline: none;
  box-shadow: none;
}

.navbar-toggler span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.navbar-toggler i {
  font-size: 20px;
  line-height: 1;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  color: #ffffff;
  background: #222222;
  border-color: #222222;
  outline: none;
  box-shadow: none;
}

@media (max-width: 1199px) {
  .main-header .navbar {
    min-height: 76px;
  }

  .main-header .container {
    min-height: 76px;
  }

  .navbar-brand img {
    max-width: 165px;
    max-height: 54px;
  }

  .main-menu {
    margin-left: 20px;
  }

  .main-menu .navbar-nav {
    gap: 0;
  }

  .main-menu .nav-link {
    padding: 9px 9px;
    font-size: 14px;
  }

  .header-btn {
    margin-left: 12px;
  }

  .header-btn .btn-default {
    min-height: 43px;
    padding: 0 19px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .main-header .navbar {
    min-height: 74px;
  }

  .main-header .container {
    min-height: 74px;
  }

  .navbar-brand img {
    max-width: 160px;
    max-height: 52px;
  }

  .navbar-toggler {
    display: flex;
    position: relative;
    z-index: 1102;
  }

  .main-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 100px 35px 40px;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #ffffff;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition:
      transform 0.35s ease,
      opacity 0.35s ease,
      visibility 0.35s ease;
    z-index: 1100;
  }

  .main-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .main-menu .navbar-nav {
    width: 100%;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .main-menu .nav-item {
    width: 100%;
    display: block;
  }

  .main-menu .nav-link {
    width: 100%;
    min-height: 58px;
    padding: 15px 5px;
    justify-content: flex-start;
    color: #222222;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 17px;
    font-weight: 600;
  }

  .main-menu .nav-link::after {
    display: none;
  }

  .main-menu .nav-link:hover,
  .main-menu .nav-link:focus {
    color: #f0c400;
    background: transparent;
  }

  .main-menu .nav-item.d-lg-none {
    display: block;
  }

  .main-menu .header-btn {
    width: 100%;
    margin: 30px 0 0;
  }

  .main-menu .header-btn .btn-default {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .main-header .navbar {
    min-height: 68px;
  }

  .main-header .container {
    min-height: 68px;
  }

  .navbar-brand img {
    max-width: 145px;
    max-height: 48px;
  }

  .navbar-toggler {
    width: 43px;
    height: 43px;
  }

  .navbar-toggler i {
    font-size: 19px;
  }

  .main-menu {
    padding: 88px 25px 30px;
  }

  .main-menu .nav-link {
    min-height: 55px;
    padding: 14px 3px;
    font-size: 16px;
  }

  .main-menu .header-btn {
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .main-header .navbar {
    min-height: 64px;
  }

  .main-header .container {
    min-height: 64px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .navbar-brand img {
    max-width: 135px;
    max-height: 44px;
  }

  .navbar-toggler {
    width: 41px;
    height: 41px;
  }

  .main-menu {
    padding: 82px 20px 25px;
  }

  .main-menu .nav-link {
    min-height: 52px;
    font-size: 15px;
  }
}

/*Hero Section*/
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--primary-color);
}

.hero-swiper {
  position: relative;
  width: 100%;
  height: calc(100vh - 82px);
  min-height: 650px;
  max-height: 850px;
  overflow: hidden;
}

.hero-swiper .swiper-wrapper {
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-slider-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 8s ease;
}

.hero-swiper .swiper-slide-active .hero-slider-image img {
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(80, 68, 99, 0.96) 0%,
    rgba(80, 68, 99, 0.86) 30%,
    rgba(80, 68, 99, 0.62) 55%,
    rgba(80, 68, 99, 0.3) 78%,
    rgba(80, 68, 99, 0.12) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-content {
  width: 100%;
  max-width: 850px;
  padding: 80px 0;
}

.hero-content .section-title {
  margin: 0 0 35px;
}

.hero-content .section-title h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--accent-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content .section-title h3::before {
  content: "";
  width: 34px;
  height: 2px;
  flex-shrink: 0;
  background: var(--accent-color);
}

.hero-content .section-title h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white-color);
  font-family: var(--accent-font);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.hero-content .section-title p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.hero-content-body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-content-body .btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 155px;
  min-height: 54px;
  padding: 0 28px;
  color: var(--white-color);
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.hero-content-body .btn-default:hover {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.hero-content-body .btn-default.btn-border {
  color: var(--white-color);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-content-body .btn-default.btn-border:hover {
  color: var(--primary-color);
  background: var(--white-color);
  border-color: var(--white-color);
}

.hero-pagination {
  position: absolute;
  right: 60px !important;
  bottom: 45px !important;
  left: auto !important;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 2px;
  margin: 40px 4px !important;
  padding: 0;
  opacity: 0.45;
  background: var(--white-color);
  border-radius: 0;
  transition:
    width 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 55px;
  opacity: 1;
  background: var(--accent-color);
}

@media (max-width: 1199px) {
  .hero-swiper {
    height: calc(100vh - 76px);
    min-height: 620px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-content .section-title h1 {
    font-size: clamp(42px, 5.5vw, 62px);
  }

  .hero-pagination {
    right: 40px !important;
    bottom: 40px !important;
  }
}

@media (max-width: 991px) {
  .hero-swiper {
    height: 680px;
    min-height: 680px;
    max-height: none;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(80, 68, 99, 0.95) 0%,
      rgba(80, 68, 99, 0.78) 45%,
      rgba(80, 68, 99, 0.45) 100%
    );
  }

  .hero-content {
    max-width: 680px;
    padding: 70px 0;
  }

  .hero-content .section-title h1 {
    font-size: 52px;
  }

  .hero-pagination {
    right: 30px !important;
    bottom: 30px !important;
  }
}

@media (max-width: 767px) {
  .hero-swiper {
    height: 650px;
    min-height: 650px;
  }

  .hero-slider-image img {
    object-position: 60% center;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(80, 68, 99, 0.96) 0%,
      rgba(80, 68, 99, 0.8) 55%,
      rgba(80, 68, 99, 0.5) 100%
    );
  }

  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    max-width: 100%;
    padding: 60px 0 90px;
  }

  .hero-content .section-title {
    margin-bottom: 28px;
  }

  .hero-content .section-title h3 {
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .hero-content .section-title h3::before {
    width: 25px;
  }

  .hero-content .section-title h1 {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -0.8px;
  }

  .hero-content .section-title p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-content-body {
    gap: 10px;
  }

  .hero-content-body .btn-default {
    min-width: 145px;
    min-height: 50px;
    padding: 0 20px;
    font-size: 14px;
  }

  .hero-pagination {
    right: auto !important;
    bottom: 25px !important;
    left: 20px !important;
    justify-content: flex-start;
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 22px;
  }

  .hero-pagination .swiper-pagination-bullet-active {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .hero-swiper {
    height: 600px;
    min-height: 600px;
  }

  .hero-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-content {
    padding: 55px 0 90px;
  }

  .hero-content .section-title h3 {
    font-size: 10px;
  }

  .hero-content .section-title h1 {
    font-size: 32px;
  }

  .hero-content .section-title p {
    font-size: 13px;
  }

  .hero-content-body {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content-body .btn-default {
    width: 100%;
  }

  .hero-pagination {
    left: 15px !important;
    bottom: 20px !important;
  }
}

/*About us*/
.about-us {
  position: relative;
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
  background: var(--secondary-color);
}

.about-us .section-row {
  margin-bottom: 55px;
}

.about-us .section-title {
  margin: 0;
}

.about-us .section-title h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--accent-color);
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-us .section-title h3::before {
  content: "";
  width: 32px;
  height: 2px;
  flex-shrink: 0;
  background: var(--accent-color);
}

.about-us .section-title h2 {
  max-width: 780px;
  margin: 0;
  color: var(--primary-color);
  font-family: var(--accent-font);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
}

.about-content {
  max-width: 700px;
  padding-right: 45px;
}

.about-content p {
  margin: 0;
  color: var(--text-color);
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
}

.about-list {
  width: 100%;
  padding-left: 35px;
  border-left: 1px solid var(--divider-color);
}

.about-list ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  position: relative;
  padding: 18px 0 18px 30px;
  color: var(--primary-color);
  border-bottom: 1px solid var(--divider-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.about-list li:first-child {
  padding-top: 0;
}

.about-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--accent-color);
  transform: rotate(45deg);
}

.about-list li:first-child::before {
  top: 6px;
}

.about-image {
  width: 100%;
  margin-top: 70px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  animation: aboutImageFadeUp 1s ease forwards;
  animation-delay: 0.2s;
  border-radius: 20px;
}

.about-image figure {
  position: relative;
  width: 100%;
  height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--primary-color);
}

.about-image figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(80, 68, 99, 0.18),
    rgba(80, 68, 99, 0)
  );
  pointer-events: none;
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

@keyframes aboutImageFadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .about-us {
    padding: 95px 0;
  }

  .about-us .section-title h2 {
    font-size: 42px;
  }

  .about-content {
    padding-right: 30px;
  }

  .about-list {
    padding-left: 25px;
  }

  .about-image {
    margin-top: 60px;
  }

  .about-image figure {
    height: 380px;
  }
}

@media (max-width: 991px) {
  .about-us {
    padding: 80px 0;
  }

  .about-us .section-row {
    margin-bottom: 40px;
  }

  .about-us .section-title h2 {
    font-size: 38px;
  }

  .about-us .section-btn {
    justify-content: flex-start;
    margin-top: 25px;
  }

  .about-content {
    max-width: 100%;
    padding-right: 0;
  }

  .about-list {
    margin-top: 40px;
    padding-left: 25px;
  }

  .about-image {
    margin-top: 55px;
  }

  .about-image figure {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .about-us {
    padding: 70px 0;
  }

  .about-us .section-row {
    margin-bottom: 35px;
  }

  .about-us .section-title h3 {
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .about-us .section-title h3::before {
    width: 25px;
  }

  .about-us .section-title h2 {
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.5px;
  }

  .about-us .section-btn {
    margin-top: 25px;
  }

  .about-us .section-btn .btn-default {
    min-height: 48px;
    padding: 0 22px;
    font-size: 14px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .about-list {
    margin-top: 35px;
    padding-left: 20px;
  }

  .about-list li {
    padding: 16px 0 16px 27px;
    font-size: 13px;
  }

  .about-list li:first-child {
    padding-top: 0;
  }

  .about-list li::before {
    top: 22px;
    width: 8px;
    height: 8px;
  }

  .about-list li:first-child::before {
    top: 5px;
  }

  .about-image {
    margin-top: 45px;
  }

  .about-image figure {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: 60px 0;
  }

  .about-us .section-title h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 13px;
  }

  .about-list {
    padding-left: 17px;
  }

  .about-list li {
    font-size: 14px;
  }

  .about-image {
    margin-top: 40px;
  }

  .about-image figure {
    height: 230px;
  }
}

/*Our Services*/
.our-services {
  position: relative;
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
  background: #f7f6f9;
}

.our-services .section-row {
  margin-bottom: 55px;
}

.our-services .section-title {
  margin: 0;
}

.our-services .section-title h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--accent-color);
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.our-services .section-title h3::before {
  content: "";
  width: 32px;
  height: 2px;
  flex-shrink: 0;
  background: var(--accent-color);
}

.our-services .section-title h2 {
  max-width: 700px;
  margin: 0;
  color: var(--primary-color);
  font-family: var(--accent-font);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
}

.our-services .section-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.our-services .section-btn .btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  padding: 0 25px;
  color: var(--white-color);
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100px;
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.our-services .section-btn .btn-default:hover {
  color: var(--white-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 330px;
  padding: 34px 32px 28px;
  overflow: hidden;
  background: var(--white-color);
  border: 1px solid rgba(80, 68, 99, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(80, 68, 99, 0.07);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-item::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  background: rgba(220, 21, 83, 0.045);
  border-radius: 50%;
  transition:
    transform 0.5s ease,
    background-color 0.5s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 21, 83, 0.22);
  box-shadow: 0 20px 50px rgba(80, 68, 99, 0.14);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover::after {
  transform: scale(1.4);
  background: rgba(220, 21, 83, 0.07);
}

.icon-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  color: var(--accent-color);
  background: rgba(220, 21, 83, 0.08);
  border-radius: 14px;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease;
}

.icon-box i {
  font-size: 25px;
  line-height: 1;
}

.service-item:hover .icon-box {
  color: var(--white-color);
  background: var(--accent-color);
  transform: translateY(-3px);
}

.service-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.service-content h3 {
  margin: 0 0 13px;
  color: var(--primary-color);
  font-family: var(--default-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.service-content p {
  max-width: 390px;
  margin: 0;
  color: var(--text-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.service-btn {
  position: relative;
  z-index: 2;
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid var(--divider-color);
}

.service-btn a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.service-btn a::after {
  content: "→";
  color: var(--accent-color);
  font-size: 17px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.service-btn a:hover {
  color: var(--accent-color);
  gap: 13px;
}

.service-btn a:hover::after {
  transform: translateX(3px);
}

@media (max-width: 1199px) {
  .our-services {
    padding: 95px 0;
  }

  .our-services .section-title h2 {
    font-size: 42px;
  }

  .service-item {
    min-height: 320px;
    padding: 30px 27px 25px;
  }

  .service-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .our-services {
    padding: 80px 0;
  }

  .our-services .section-row {
    margin-bottom: 40px;
  }

  .our-services .section-title h2 {
    font-size: 38px;
  }

  .our-services .section-btn {
    justify-content: flex-start;
    margin-top: 25px;
  }

  .service-item {
    min-height: 310px;
  }
}

@media (max-width: 767px) {
  .our-services {
    padding: 70px 0;
  }

  .our-services .section-row {
    margin-bottom: 35px;
  }

  .our-services .section-title h3 {
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .our-services .section-title h3::before {
    width: 25px;
  }

  .our-services .section-title h2 {
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.5px;
  }

  .our-services .section-btn {
    margin-top: 22px;
  }

  .our-services .section-btn .btn-default {
    min-height: 48px;
    padding: 0 22px;
    font-size: 14px;
  }

  .service-item {
    min-height: 290px;
    padding: 28px 25px 24px;
    border-radius: 15px;
  }

  .icon-box {
    width: 58px;
    height: 58px;
    margin-bottom: 23px;
    border-radius: 12px;
  }

  .icon-box i {
    font-size: 22px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 13px;
    line-height: 1.75;
  }

  .service-btn {
    margin-top: 22px;
    padding-top: 16px;
  }
}

@media (max-width: 480px) {
  .our-services {
    padding: 60px 0;
  }

  .our-services .section-title h2 {
    font-size: 28px;
  }

  .service-item {
    min-height: 275px;
    padding: 25px 22px 22px;
    border-radius: 14px;
  }

  .service-content h3 {
    font-size: 17px;
  }

  .service-content p {
    font-size: 14px;
  }
}

/* Why-choose-us */
.why-choose-us {
  position: relative;
  width: 100%;
  padding: 60px 0 0;
  overflow: hidden;
  background: var(--white-color);
}

.why-choose-us .section-row {
  margin-bottom: 60px;
}

.why-choose-us .section-title {
  margin: 0;
}

.why-choose-us .section-title h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--accent-color);
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.why-choose-us .section-title h3::before {
  content: "";
  width: 32px;
  height: 2px;
  flex-shrink: 0;
  background: var(--accent-color);
}

.why-choose-us .section-title h2 {
  max-width: 850px;
  margin: 0;
  color: var(--primary-color);
  font-family: var(--accent-font);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
}

.why-choose-us .section-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.why-choose-us .section-btn .btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  padding: 0 25px;
  color: var(--white-color);
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100px;
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.why-choose-us .section-btn .btn-default:hover {
  color: var(--white-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.why-choose-image {
  position: relative;
  width: 100%;
  padding-right: 35px;
}

.why-choose-image::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -18px;
  width: 85px;
  height: 85px;
  background: var(--accent-color);
  border-radius: 18px;
  opacity: 0.08;
  z-index: 0;
}

.why-choose-image figure {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 0;
  overflow: hidden;
  background: var(--primary-color);
  border-radius: 20px;
  z-index: 1;
}

.why-choose-image figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(80, 68, 99, 0.02) 20%,
    rgba(80, 68, 99, 0.35) 100%
  );
  pointer-events: none;
}

.why-choose-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.why-choose-image:hover img {
  transform: scale(1.04);
}

.why-choose-content {
  width: 100%;
  padding-left: 45px;
}

.why-choose-item {
  position: relative;
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--divider-color);
}

.why-choose-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.why-choose-item h3 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 13px;
  color: var(--primary-color);
  font-family: var(--default-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.why-choose-item h3 span {
  flex-shrink: 0;
  color: var(--accent-color);
  font-family: var(--accent-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.why-choose-item p {
  max-width: 550px;
  margin: 0;
  padding-left: 48px;
  color: var(--text-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
}

.our-scrolling-ticker {
  position: relative;
  margin-top: 20px;
  width: 100%;
  overflow: hidden;
  background: var(--primary-color);
}

.scrolling-ticker-box {
  display: flex;
  width: max-content;
  overflow: hidden;
  padding: 20px 0;
}

.scrolling-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: whyChooseTicker 28s linear infinite;
}

.scrolling-content span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 38px;
  color: var(--white-color);
  font-family: var(--accent-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scrolling-content span::after {
  content: "";
  position: absolute;
  right: -4px;
  width: 7px;
  height: 7px;
  background: var(--accent-color);
  border-radius: 50%;
}

@keyframes whyChooseTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 1199px) {
  .why-choose-us {
    padding-top: 95px;
  }

  .why-choose-us .section-title h2 {
    font-size: 42px;
  }

  .why-choose-image {
    padding-right: 25px;
  }

  .why-choose-image figure {
    height: 450px;
  }

  .why-choose-content {
    padding-left: 25px;
  }

  .why-choose-item h3 {
    font-size: 18px;
  }

  .our-scrolling-ticker {
    margin-top: 90px;
  }
}

@media (max-width: 991px) {
  .why-choose-us {
    padding-top: 80px;
  }

  .why-choose-us .section-row {
    margin-bottom: 45px;
  }

  .why-choose-us .section-title h2 {
    font-size: 38px;
  }

  .why-choose-us .section-btn {
    justify-content: flex-start;
    margin-top: 25px;
  }

  .why-choose-image {
    padding-right: 0;
  }

  .why-choose-image figure {
    height: 450px;
  }

  .why-choose-content {
    padding-left: 0;
    margin-top: 50px;
  }

  .why-choose-item {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  .our-scrolling-ticker {
    margin-top: 75px;
  }
}

@media (max-width: 767px) {
  .why-choose-us {
    padding-top: 70px;
  }

  .why-choose-us .section-row {
    margin-bottom: 35px;
  }

  .why-choose-us .section-title h3 {
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .why-choose-us .section-title h3::before {
    width: 25px;
  }

  .why-choose-us .section-title h2 {
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.5px;
  }

  .why-choose-us .section-btn {
    margin-top: 22px;
  }

  .why-choose-us .section-btn .btn-default {
    min-height: 48px;
    padding: 0 22px;
    font-size: 14px;
  }

  .why-choose-image::before {
    top: 15px;
    left: -10px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .why-choose-image figure {
    height: 350px;
    border-radius: 15px;
  }

  .why-choose-content {
    margin-top: 40px;
  }

  .why-choose-item {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .why-choose-item h3 {
    gap: 9px;
    font-size: 17px;
  }

  .why-choose-item h3 span {
    font-size: 14px;
  }

  .why-choose-item p {
    padding-left: 0;
    font-size: 13px;
    line-height: 1.75;
  }

  .our-scrolling-ticker {
    margin-top: 60px;
  }

  .scrolling-ticker-box {
    padding: 17px 0;
  }

  .scrolling-content span {
    padding: 0 25px;
    font-size: 14px;
  }

  .scrolling-content span::after {
    width: 5px;
    height: 5px;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding-top: 60px;
  }

  .why-choose-us .section-title h2 {
    font-size: 28px;
  }

  .why-choose-image figure {
    height: 280px;
  }

  .why-choose-item h3 {
    font-size: 16px;
  }

  .why-choose-item p {
    font-size: 14px;
  }

  .our-scrolling-ticker {
    margin-top: 50px;
  }
}

/*Gallery Section*/
.our-gallery {
  position: relative;
  padding: 60px 0;
  background: var(--white-color);
  overflow: hidden;
}

.our-gallery .section-row {
  margin-bottom: 50px;
}

.our-gallery .section-title {
  margin: 0;
}

.our-gallery .section-title h3 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--accent-color);
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.our-gallery .section-title h3::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

.our-gallery .section-title h2 {
  max-width: 780px;
  margin: 0;
  color: var(--primary-color);
  font-family: var(--accent-font);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -1px;
}

.gallery-description {
  max-width: 420px;
  margin-left: auto;
}

.gallery-description p {
  margin: 0;
  color: var(--text-color);
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.gallery-window {
  position: relative;
  height: 720px;
  overflow: hidden;
  border-radius: 24px;
}

.gallery-window::before,
.gallery-window::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 130px;
  z-index: 5;
  pointer-events: none;
}

.gallery-window::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    var(--white-color),
    rgba(255, 255, 255, 0)
  );
}

.gallery-window::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    var(--white-color),
    rgba(255, 255, 255, 0)
  );
}

.gallery-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  height: 100%;
}

.gallery-column {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  will-change: transform;
}

.gallery-column-up .gallery-track {
  animation: galleryMoveUp 45s linear infinite;
}

.gallery-column-down .gallery-track {
  transform: translateY(-50%);
  animation: galleryMoveDown 45s linear infinite;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 260px;
  flex: 0 0 260px;
  overflow: hidden;
  border-radius: 18px;
  background: #f1f0f3;
  text-decoration: none;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(80, 68, 99, 0) 50%,
    rgba(80, 68, 99, 0.35) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 4px;
}

@keyframes galleryMoveUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - 12.5px));
  }
}

@keyframes galleryMoveDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

.gallery-column:hover .gallery-track {
  animation-play-state: paused;
}

@media (max-width: 991px) {
  .our-gallery {
    padding: 80px 0;
  }

  .our-gallery .section-row {
    margin-bottom: 35px;
  }

  .gallery-description {
    margin: 20px 0 0;
  }

  .gallery-window {
    height: 650px;
  }

  .gallery-columns {
    gap: 18px;
  }

  .gallery-track {
    gap: 18px;
  }

  .gallery-item {
    height: 230px;
    flex-basis: 230px;
    border-radius: 15px;
  }
}

@media (max-width: 767px) {
  .our-gallery {
    padding: 65px 0;
  }

  .gallery-window {
    height: 600px;
    border-radius: 18px;
  }

  .gallery-columns {
    gap: 12px;
  }

  .gallery-track {
    gap: 12px;
  }

  .gallery-item {
    height: 200px;
    flex-basis: 200px;
    border-radius: 12px;
  }

  .gallery-window::before,
  .gallery-window::after {
    height: 90px;
  }

  .gallery-column-up .gallery-track,
  .gallery-column-down .gallery-track {
    animation-duration: 35s;
  }
}

@media (max-width: 575px) {
  .our-gallery {
    padding: 55px 0;
  }

  .gallery-window {
    height: 500px;
  }

  .gallery-columns {
    gap: 10px;
  }

  .gallery-track {
    gap: 10px;
  }

  .gallery-item {
    height: 170px;
    flex-basis: 170px;
    border-radius: 10px;
  }

  .gallery-column-up .gallery-track,
  .gallery-column-down .gallery-track {
    animation-duration: 30s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-column-up .gallery-track,
  .gallery-column-down .gallery-track {
    animation: none;
  }

  .gallery-column-down .gallery-track {
    transform: none;
  }
}

/* Testimonials */
.our-testimonials {
  position: relative;
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
  background: #f3f3f4;
}

.our-testimonials .section-row {
  margin-bottom: 55px;
}

.our-testimonials .section-title {
  margin: 0;
}

.our-testimonials .section-title h3 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--accent-color);
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.our-testimonials .section-title h3::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

.our-testimonials .section-title h2 {
  max-width: 780px;
  margin: 0;
  color: var(--primary-color);
  font-family: var(--accent-font);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -1px;
}

.testimonial-counter-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.testimonial-counter-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-counter h3 {
  margin: 0;
  color: var(--primary-color);
  font-family: var(--accent-font);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-rating i {
  color: var(--accent-color);
  font-size: 13px;
}

.testimonial-counter-content {
  margin-top: 9px;
}

.testimonial-counter-content p {
  margin: 0;
  color: var(--text-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  padding-bottom: 55px;
}

.service-highlight-swiper {
  width: 100%;
  overflow: visible;
}

.service-highlight-swiper .swiper-wrapper {
  align-items: stretch;
}

.service-highlight-swiper .swiper-slide {
  height: auto;
}

.testimonial-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 360px;
  padding: 34px;
  overflow: hidden;
  background: var(--white-color);
  border: 1px solid rgba(80, 68, 99, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(80, 68, 99, 0.07);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 0 0 6px 0;
  transition: width 0.4s ease;
}

.testimonial-item::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  background: rgba(220, 21, 83, 0.045);
  border-radius: 50%;
  pointer-events: none;
}

.testimonial-item:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 21, 83, 0.15);
  box-shadow: 0 22px 55px rgba(80, 68, 99, 0.13);
}

.testimonial-item:hover::before {
  width: 90px;
}

.testimonial-header {
  position: relative;
  z-index: 2;
}

.testimonial-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  color: var(--white-color);
  background: var(--primary-color);
  border-radius: 14px;
}

.testimonial-quote i {
  font-size: 17px;
}

.testimonial-content p {
  margin: 0;
  color: #55525b;
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.testimonial-body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid var(--divider-color);
}

.author-image {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  border: 2px solid rgba(220, 21, 83, 0.15);
  border-radius: 50%;
}

.author-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-content {
  min-width: 0;
}

.author-content h3 {
  margin: 0 0 5px;
  color: var(--primary-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.author-content p {
  margin: 0;
  color: var(--accent-color);
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.service-highlight-swiper .swiper-pagination {
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.service-highlight-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  opacity: 1;
  background: rgba(80, 68, 99, 0.2);
  border-radius: 50%;
  transition:
    width 0.3s ease,
    background 0.3s ease,
    border-radius 0.3s ease;
}

.service-highlight-swiper .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--accent-color);
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .our-testimonials {
    padding: 95px 0;
  }

  .our-testimonials .section-title h2 {
    font-size: 40px;
  }

  .testimonial-item {
    min-height: 340px;
    padding: 30px;
  }
}

@media (max-width: 991px) {
  .our-testimonials {
    padding: 80px 0;
  }

  .our-testimonials .section-row {
    margin-bottom: 45px;
  }

  .testimonial-counter-box {
    align-items: flex-start;
    margin-top: 25px;
  }

  .testimonial-item {
    min-height: 330px;
  }
}

@media (max-width: 767px) {
  .our-testimonials {
    padding: 70px 0;
  }

  .our-testimonials .section-row {
    margin-bottom: 35px;
  }

  .our-testimonials .section-title h3 {
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .our-testimonials .section-title h3::before {
    width: 24px;
  }

  .our-testimonials .section-title h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .testimonial-counter-rating {
    gap: 12px;
  }

  .testimonial-counter h3 {
    font-size: 23px;
  }

  .testimonial-rating i {
    font-size: 14px;
  }

  .testimonial-item {
    min-height: 310px;
    padding: 27px 24px 24px;
    border-radius: 18px;
  }

  .testimonial-quote {
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    border-radius: 12px;
  }

  .testimonial-content p {
    font-size: 14px;
    line-height: 1.75;
  }

  .testimonial-body {
    margin-top: 28px;
    padding-top: 18px;
  }

  .author-image {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
}

@media (max-width: 480px) {
  .our-testimonials {
    padding: 60px 0;
  }

  .our-testimonials .section-title h2 {
    font-size: 27px;
  }

  .testimonial-item {
    min-height: 295px;
    padding: 25px 21px 21px;
  }

  .testimonial-content p {
    font-size: 13px;
  }

  .author-content h3 {
    font-size: 14px;
  }

  .author-content p {
    font-size: 9px;
  }
}

/*Faq Sections*/
.our-faqs {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background: #f3f3f4;
}

.our-faqs::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(80, 68, 99, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.our-faqs::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 360px;
  height: 360px;
  background: rgba(220, 21, 83, 0.035);
  border-radius: 50%;
  pointer-events: none;
}

.our-faqs .container {
  position: relative;
  z-index: 2;
}

.our-faqs-content {
  position: sticky;
  top: 120px;
  max-width: 480px;
}

.our-faqs .section-title h3 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--accent-color);
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.our-faqs .section-title h3::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 10px;
}

.our-faqs .section-title h2 {
  margin: 0 0 20px;
  color: var(--primary-color);
  font-family: var(--accent-font);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -1px;
}

.our-faqs .section-title p {
  max-width: 430px;
  margin: 0;
  color: var(--text-color);
  font-family: var(--default-font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.our-faqs .section-btn {
  margin-top: 30px;
}

.our-faqs .btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  color: var(--white-color);
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.our-faqs .btn-default:hover {
  color: var(--white-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(220, 21, 83, 0.18);
}

.our-faq-section {
  width: 100%;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion .accordion-item {
  position: relative;
  overflow: hidden;
  background: var(--white-color);
  border: 1px solid rgba(80, 68, 99, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(80, 68, 99, 0.045);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(220, 21, 83, 0.18);
  box-shadow: 0 14px 35px rgba(80, 68, 99, 0.08);
}

.faq-accordion .accordion-header {
  margin: 0;
}

.faq-accordion .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 20px 65px 20px 25px;
  color: var(--primary-color);
  background: transparent;
  border: 0;
  border-radius: 16px !important;
  box-shadow: none;
  font-family: var(--default-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background: rgba(220, 21, 83, 0.025);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.faq-accordion .accordion-button::after {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 34px;
  height: 34px;
  margin: 0;
  content: "+";
  color: var(--primary-color);
  background-image: none;
  background-color: #f3f3f4;
  border-radius: 50%;
  font-family: var(--default-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  transform: translateY(-50%);
  transition:
    transform 0.35s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  color: var(--white-color);
  background: var(--accent-color);
  transform: translateY(-50%) rotate(180deg);
}

.faq-accordion .accordion-collapse {
  border: 0;
}

.faq-accordion .accordion-body {
  padding: 0 65px 25px 25px;
}

.faq-accordion .accordion-body p {
  max-width: 650px;
  margin: 0;
  color: var(--text-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(220, 21, 83, 0.15);
  box-shadow: 0 16px 40px rgba(80, 68, 99, 0.09);
}

@media (max-width: 1199px) {
  .our-faqs {
    padding: 95px 0;
  }

  .our-faqs .section-title h2 {
    font-size: 40px;
  }

  .our-faqs-content {
    max-width: 430px;
  }

  .faq-accordion .accordion-button {
    min-height: 72px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .our-faqs {
    padding: 80px 0;
  }

  .our-faqs-content {
    position: relative;
    top: auto;
    max-width: 650px;
  }

  .our-faqs .section-title h2 {
    font-size: 38px;
  }

  .our-faqs .section-title p {
    max-width: 600px;
  }

  .our-faq-section {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .our-faqs {
    padding: 70px 0;
  }

  .our-faqs::before {
    width: 280px;
    height: 280px;
    top: -130px;
    right: -130px;
  }

  .our-faqs::after {
    width: 250px;
    height: 250px;
    bottom: -110px;
    left: -110px;
  }

  .our-faqs .section-title h3 {
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .our-faqs .section-title h3::before {
    width: 24px;
  }

  .our-faqs .section-title h2 {
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .our-faqs .section-title p {
    font-size: 14px;
    line-height: 1.75;
  }

  .our-faqs .section-btn {
    margin-top: 25px;
  }

  .our-faqs .btn-default {
    min-height: 48px;
    padding: 0 24px;
  }

  .our-faq-section {
    margin-top: 35px;
  }

  .faq-accordion {
    gap: 10px;
  }

  .faq-accordion .accordion-item {
    border-radius: 14px;
  }

  .faq-accordion .accordion-button {
    min-height: 68px;
    padding: 18px 58px 18px 20px;
    font-size: 13px;
    line-height: 1.55;
    border-radius: 14px !important;
  }

  .faq-accordion .accordion-button::after {
    right: 17px;
    width: 31px;
    height: 31px;
    font-size: 18px;
    line-height: 29px;
  }

  .faq-accordion .accordion-body {
    padding: 0 20px 21px;
  }

  .faq-accordion .accordion-body p {
    font-size: 13px;
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  .our-faqs {
    padding: 60px 0;
  }

  .our-faqs .section-title h2 {
    font-size: 27px;
  }

  .faq-accordion .accordion-button {
    min-height: 64px;
    padding: 17px 54px 17px 18px;
    font-size: 12.5px;
  }

  .faq-accordion .accordion-body {
    padding: 0 18px 19px;
  }

  .faq-accordion .accordion-body p {
    font-size: 12.5px;
  }
}

/*Contact Section*/
.contact-us {
  position: relative;
  padding: 60px 0;
  background: #f5f4f7;
  overflow: hidden;
}

.contact-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(80, 68, 99, 0.12);
}

.contact-image {
  position: relative;
  height: 100%;
  min-height: 680px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.contact-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(80, 68, 99, 0.96) 0%,
    rgba(80, 68, 99, 0.78) 48%,
    rgba(80, 68, 99, 0.52) 100%
  );
}

.contact-image-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 680px;
  padding: 70px 60px;
}

.contact-image-content .section-title {
  max-width: 500px;
  margin-bottom: 22px;
}

.contact-image-content .section-title h3 {
  margin-bottom: 12px;
  color: var(--accent-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.contact-image-content .section-title h2 {
  margin: 0;
  color: var(--white-color);
  font-family: var(--accent-font);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.contact-intro {
  max-width: 500px;
  margin: 0 0 35px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 470px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.contact-info-item:hover {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(220, 21, 83, 0.5);
  transform: translateX(5px);
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  color: var(--white-color);
  background: var(--accent-color);
  border-radius: 11px;
}

.contact-info-icon i {
  font-size: 14px;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-content small {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--default-font);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-info-content strong {
  color: var(--white-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-box {
  height: 100%;
  min-height: 680px;
  padding: 65px 60px;
  background: var(--white-color);
}

.contact-form-box .section-title {
  margin-bottom: 15px;
}

.contact-form-box .section-title h3 {
  margin-bottom: 10px;
  color: var(--accent-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.contact-form-box .section-title h2 {
  margin: 0;
  color: var(--primary-color);
  font-family: var(--accent-font);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

.contact-form-intro {
  max-width: 480px;
  margin: 0 0 28px;
  color: var(--text-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.contact-form .form-group {
  position: relative;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-family: var(--default-font);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.contact-form .form-control {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--primary-color);
  background: #f8f7f9;
  border: 1px solid #e8e5eb;
  border-radius: 10px;
  outline: none;
  box-shadow: none;
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form textarea.form-control {
  min-height: 125px;
  resize: vertical;
}

.contact-form .form-control::placeholder {
  color: #aaa6b0;
  opacity: 1;
}

.contact-form .form-control:focus {
  color: var(--primary-color);
  background: var(--white-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(220, 21, 83, 0.08);
}

.contact-form select.form-control {
  cursor: pointer;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 25px;
  color: #ffffff;
  background: #dc1553;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.contact-submit i {
  font-size: 14px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.contact-submit:hover i {
  transform: translateX(4px);
}

#msgSubmit {
  margin: 10px 0 0;
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 600;
}

#msgSubmit.h3 {
  font-size: 14px;
}

@media (max-width: 1199px) {
  .contact-us {
    padding: 80px 0;
  }

  .contact-image-content {
    padding: 55px 45px;
  }

  .contact-form-box {
    padding: 55px 45px;
  }

  .contact-image-content .section-title h2 {
    font-size: 32px;
  }

  .contact-form-box .section-title h2 {
    font-size: 27px;
  }
}

@media (max-width: 991px) {
  .contact-us {
    padding: 70px 0;
  }

  .contact-wrapper {
    border-radius: 20px;
  }

  .contact-image {
    min-height: 600px;
  }

  .contact-image-content {
    min-height: 600px;
    padding: 55px 50px;
  }

  .contact-form-box {
    min-height: auto;
    padding: 55px 50px;
  }
}

@media (max-width: 767px) {
  .contact-us {
    padding: 60px 0;
  }

  .contact-wrapper {
    border-radius: 18px;
  }

  .contact-image {
    min-height: 620px;
  }

  .contact-image-content {
    min-height: 620px;
    padding: 45px 30px;
  }

  .contact-image-content .section-title h2 {
    font-size: 28px;
  }

  .contact-intro {
    font-size: 14px;
  }

  .contact-info-list {
    gap: 10px;
  }

  .contact-info-item {
    padding: 11px 12px;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .contact-form-box {
    padding: 45px 30px;
  }

  .contact-form-box .section-title h2 {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .contact-us {
    padding: 50px 0;
  }

  .contact-image {
    min-height: 650px;
  }

  .contact-image-content {
    min-height: 650px;
    padding: 40px 22px;
  }

  .contact-image-content .section-title h3,
  .contact-form-box .section-title h3 {
    font-size: 10px;
  }

  .contact-image-content .section-title h2 {
    font-size: 25px;
  }

  .contact-intro {
    margin-bottom: 25px;
    font-size: 14px;
  }

  .contact-info-item {
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
  }

  .contact-info-icon {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
    border-radius: 9px;
  }

  .contact-info-icon i {
    font-size: 14px;
  }

  .contact-info-content strong {
    font-size: 10px;
  }

  .contact-info-content small {
    font-size: 8px;
  }

  .contact-form-box {
    padding: 40px 22px;
  }

  .contact-form-box .section-title h2 {
    font-size: 23px;
  }

  .contact-form-intro {
    font-size: 14px;
  }

  .contact-form .form-control {
    min-height: 48px;
    padding: 12px 13px;
    font-size: 10px;
  }

  .contact-form textarea.form-control {
    min-height: 110px;
  }

  .contact-submit {
    width: 100%;
  }
}

/* Footer Sections */
.main-footer {
  position: relative;
  overflow: hidden;
  background: var(--primary-color);
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 160px;
  right: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.main-footer::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -220px;
  width: 480px;
  height: 480px;
  background: rgba(220, 21, 83, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.main-footer > .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.main-footer .our-scrolling-ticker {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
  background: var(--accent-color);
}

.main-footer .scrolling-ticker-box {
  display: flex;
  width: max-content;
  overflow: hidden;
}

.main-footer .scrolling-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: max-content;
  animation: footerTicker 30s linear infinite;
}

.main-footer .scrolling-content span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 17px 30px;
  color: var(--white-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-footer .scrolling-content span::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 30px;
  background: var(--white-color);
  border-radius: 50%;
}

@keyframes footerTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.footer-brand {
  max-width: 360px;
}

.footer-brand h2 {
  margin: 0 0 6px;
  color: var(--white-color);
  font-family: var(--accent-font);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.footer-brand p {
  margin: 0 0 20px;
  color: var(--accent-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-brand > span {
  display: block;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.social-icons a i {
  width: auto;
  height: auto;
  margin: 0;
  font-size: 15px;
  line-height: 1;
}

.social-icons a:hover {
  color: var(--white-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(220, 21, 83, 0.25);
}

.social-icons a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links h3 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 12px;
  color: var(--white-color);
  font-family: var(--default-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 20px;
}

.footer-links > a,
.footer-links > span {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-links > a:hover {
  color: var(--white-color);
  transform: translateX(5px);
}

.footer-links > span:last-child,
.footer-links > a:last-child {
  margin-bottom: 0;
}

.footer-contact-info {
  width: 100%;
}

.footer-contact-info > a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-contact-info > a:hover {
  transform: translateX(4px);
}

.footer-contact-info > a > span:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
  transition: color 0.3s ease;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.footer-contact-icon i {
  width: auto;
  height: auto;
  margin: 0;
  font-size: 13px;
  line-height: 1;
}

.footer-contact-info > a:hover .footer-contact-icon {
  color: var(--white-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.footer-contact-info > a:hover > span:last-child {
  color: var(--white-color);
}

.footer-contact-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin-top: 2px;
}

.footer-contact-address .footer-contact-icon {
  flex: 0 0 38px;
}

.footer-contact-address > span:last-child {
  padding-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.footer-links a[href^="tel:"],
.footer-links a[href^="mailto:"] {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links a[href^="tel:"]:hover,
.footer-links a[href^="mailto:"]:hover {
  color: var(--white-color);
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 30px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.footer-copyright p span {
  color: var(--accent-color);
}

.footer-credit {
  position: relative;
  padding-left: 25px;
}

.footer-credit::before {
  content: "";
  position: absolute;
  left: 4%;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--accent-color);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

.footer-contact-info > a:focus-visible {
  outline: none;
}

.footer-contact-info > a:focus-visible .footer-contact-icon {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

@media (max-width: 1199px) {
  .main-footer > .container {
    padding-top: 70px;
  }

  .footer-brand {
    max-width: 330px;
  }

  .footer-brand h2 {
    font-size: 29px;
  }

  .footer-copyright-content {
    gap: 12px 20px;
  }
}

@media (max-width: 991px) {
  .main-footer::before {
    top: 250px;
    right: -220px;
    width: 400px;
    height: 400px;
  }

  .main-footer::after {
    bottom: -180px;
    left: -180px;
    width: 400px;
    height: 400px;
  }

  .main-footer > .container {
    padding-top: 65px;
  }

  .footer-brand {
    max-width: 500px;
  }

  .footer-brand h2 {
    font-size: 29px;
  }

  .footer-links h3 {
    margin-bottom: 20px;
  }

  .footer-copyright {
    margin-top: 55px;
  }

  .footer-copyright-content {
    justify-content: center;
    text-align: center;
  }

  .footer-copyright p {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .main-footer::before {
    top: 350px;
    right: -180px;
    width: 320px;
    height: 320px;
  }

  .main-footer::after {
    bottom: -140px;
    left: -140px;
    width: 300px;
    height: 300px;
  }

  .main-footer > .container {
    padding-top: 55px;
  }

  .main-footer .scrolling-content span {
    padding: 15px 22px;
    font-size: 9px;
    letter-spacing: 1px;
  }

  .main-footer .scrolling-content span::after {
    width: 4px;
    height: 4px;
    margin-left: 22px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-brand h2 {
    font-size: 27px;
  }

  .footer-brand p {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .footer-brand > span {
    max-width: 100%;
    font-size: 14px;
  }

  .social-icons {
    gap: 9px;
    margin-top: 20px;
  }

  .social-icons a {
    width: 39px;
    height: 39px;
    border-radius: 10px;
  }

  .social-icons a i {
    font-size: 13px;
  }

  .footer-links {
    margin-top: 8px;
  }

  .footer-links h3 {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .footer-links > a,
  .footer-links > span {
    font-size: 14px;
  }

  .footer-contact-info > a {
    margin-bottom: 14px;
  }

  .footer-contact-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 9px;
  }

  .footer-contact-address {
    gap: 12px;
  }

  .footer-contact-address .footer-contact-icon {
    flex-basis: 36px;
  }

  .footer-contact-info > a > span:last-child,
  .footer-contact-address > span:last-child {
    font-size: 14px;
  }

  .footer-copyright {
    margin-top: 45px;
    padding: 22px 0;
  }

  .footer-copyright-content {
    flex-direction: column;
    gap: 10px;
  }

  .footer-credit {
    padding-left: 0;
  }

  .footer-credit::before {
    display: none;
  }

  .footer-copyright p {
    font-size: 10px;
  }
}

@media (max-width: 575px) {
  .main-footer > .container {
    padding-top: 50px;
  }

  .footer-brand h2 {
    font-size: 25px;
  }

  .footer-brand p {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .footer-links {
    margin-top: 5px;
  }

  .footer-links h3 {
    font-size: 14px;
  }

  .footer-contact-info > a {
    gap: 10px;
  }

  .footer-contact-address {
    gap: 10px;
  }

  .footer-copyright-content {
    gap: 8px;
  }
}

@media (max-width: 400px) {
  .main-footer .scrolling-content span {
    padding: 14px 18px;
    font-size: 8px;
  }

  .main-footer .scrolling-content span::after {
    margin-left: 18px;
  }

  .footer-brand h2 {
    font-size: 23px;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .social-icons a i {
    font-size: 14px;
  }

  .footer-contact-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .footer-contact-address .footer-contact-icon {
    flex-basis: 34px;
  }

  .footer-copyright p {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-footer .scrolling-content {
    animation: none;
  }

  .social-icons a,
  .footer-links > a,
  .footer-contact-icon,
  .footer-contact-info > a,
  .footer-credit a {
    transition: none;
  }
}


/* WhatsApp Chat-btn*/
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 34px;
  z-index: 9999;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.08);
  text-decoration: none;
}

.whatsapp-left {
  right: 25px;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 30px;
    bottom: 18px;
  }

  .whatsapp-left {
    right: 18px;
  }
}
