/*===============================================
    Enhanced Why Choose Area Styles
    Современная стилизация в тематике сайта
===============================================*/

.why-choose-area {
  position: relative;
  display: block;
  background: #f7f1eb;
  padding: 120px 0 120px;
  z-index: 10;
  overflow: hidden;
}

.why-choose-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top left,
      rgba(207, 23, 60, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(207, 23, 60, 0.02) 0%,
      transparent 50%
    );
  opacity: 0.6;
  z-index: -1;
}

.why-choose-area .sec-title {
  position: relative;
  padding-bottom: 60px;
  text-align: center;
}

.why-choose-area .sec-title h2 {
  position: relative;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-choose-area .sec-title h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--thm-base) 0%, #8a0f3d 100%);
  border-radius: 2px;
}

.why-choose-area .sec-title .sub-title p {
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 28px;
  margin-top: 15px;
}

/* Enhanced Single Why Choose Box */
.single-why-choose-box {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid rgba(var(--thm-base-rgb), 0.1);
  border-radius: 16px;
  padding: 45px 35px 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  transform: translateY(0);
}

.single-why-choose-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--thm-base) 0%,
    #8a0f3d 50%,
    var(--thm-base) 100%
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s ease;
}

.single-why-choose-box:hover:before {
  transform: scaleX(1);
}

.single-why-choose-box:after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(var(--thm-base-rgb), 0.03) 0%,
    transparent 70%
  );
  transform: scale(0);
  transition: transform 0.6s ease;
  z-index: -1;
}

.single-why-choose-box:hover:after {
  transform: scale(1);
}

.single-why-choose-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 70px rgba(var(--thm-base-rgb), 0.2);
  border-color: rgba(var(--thm-base-rgb), 0.25);
}

/* Enhanced Icon Styling */
.single-why-choose-box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  margin: 0 auto 30px;
  background: linear-gradient(
    135deg,
    rgba(var(--thm-base-rgb), 0.08) 0%,
    rgba(138, 15, 61, 0.08) 100%
  );
  border: 2px solid rgba(var(--thm-base-rgb), 0.15);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.single-why-choose-box .icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--thm-base) 0%, #8a0f3d 100%);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.single-why-choose-box:hover .icon:before {
  transform: scale(1);
}

.single-why-choose-box .icon span {
  position: relative;
  font-size: 42px;
  line-height: 42px;
  color: var(--thm-base);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.single-why-choose-box:hover .icon span {
  color: #ffffff;
  transform: scale(1.15);
}

/* Enhanced Typography */
.single-why-choose-box h3 {
  position: relative;
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  color: var(--thm-black);
  margin: 0 0 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.single-why-choose-box:hover h3 {
  color: var(--thm-base);
}

.single-why-choose-box p {
  position: relative;
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 28px;
  margin: 0;
  transition: all 0.3s ease;
  text-align: center;
}

.single-why-choose-box:hover p {
  color: #666666;
}

/* Advanced Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.single-why-choose-box:hover .icon {
  animation: pulse 2s infinite;
}

/* Loading Animation */
.single-why-choose-box.animate-on-load {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.single-why-choose-box.animate-on-load:nth-child(1) {
  animation-delay: 0.1s;
}

.single-why-choose-box.animate-on-load:nth-child(2) {
  animation-delay: 0.2s;
}

.single-why-choose-box.animate-on-load:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Animation for Background Elements */
@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.why-choose-area:after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: rgba(var(--thm-base-rgb), 0.05);
  border-radius: 50%;
  animation: floating 6s ease-in-out infinite;
  z-index: -1;
}

/* Enhanced Responsive Design */
@media (max-width: 1199px) {
  .why-choose-area .sec-title h2 {
    font-size: 42px;
    line-height: 52px;
  }

  .single-why-choose-box {
    padding: 40px 30px 35px;
  }

  .single-why-choose-box .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }

  .single-why-choose-box .icon span {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .why-choose-area {
    padding: 100px 0 100px;
  }

  .why-choose-area .sec-title h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .single-why-choose-box {
    margin-bottom: 40px;
    padding: 35px 25px 30px;
  }

  .single-why-choose-box h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .why-choose-area {
    padding: 80px 0 80px;
  }

  .why-choose-area .sec-title {
    padding-bottom: 40px;
  }

  .why-choose-area .sec-title h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .single-why-choose-box {
    padding: 30px 20px 25px;
  }

  .single-why-choose-box .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .single-why-choose-box .icon span {
    font-size: 32px;
  }

  .single-why-choose-box h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .why-choose-area {
    padding: 60px 0 60px;
  }

  .why-choose-area .sec-title h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .single-why-choose-box {
    padding: 25px 15px 20px;
  }

  .single-why-choose-box .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .single-why-choose-box .icon span {
    font-size: 28px;
  }

  .single-why-choose-box h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .single-why-choose-box p {
    font-size: 15px;
    line-height: 24px;
  }
}

/* Enhanced Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .why-choose-area {
    background: linear-gradient(135deg, #1a1c23 0%, #2a2d35 100%);
  }

  .single-why-choose-box {
    background: #2a2d35;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .single-why-choose-box h3 {
    color: #ffffff;
  }

  .single-why-choose-box p {
    color: #b8b4b1;
  }
}

/* Performance Optimizations */
.single-why-choose-box {
  will-change: transform, box-shadow;
}

.single-why-choose-box .icon {
  will-change: transform;
}

/* Print Styles */
@media print {
  .why-choose-area {
    background: none !important;
    padding: 40px 0 !important;
  }

  .single-why-choose-box {
    box-shadow: none !important;
    border: 1px solid #000 !important;
    break-inside: avoid;
    margin-bottom: 20px !important;
  }

  .single-why-choose-box:hover {
    transform: none !important;
  }
}

/*===============================================
    Simple Process Area Styles
    Аналогичная стилизация для блоков процесса
===============================================*/

.simple-process-area {
  position: relative;
  display: block;
  background: #f7f1eb;
  padding: 120px 0 120px;
  z-index: 10;
  overflow: hidden;
}

.simple-process-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top left,
      rgba(207, 23, 60, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(138, 15, 61, 0.03) 0%,
      transparent 50%
    );
  opacity: 0.8;
  z-index: -1;
}

.simple-process-area .sec-title {
  position: relative;
  padding-bottom: 60px;
  text-align: center;
}

.simple-process-area .sec-title h2 {
  position: relative;
  background: var(--thm-black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.simple-process-area .sec-title .sub-title p {
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

/* Simple Process Box Styles */
.single-simple-process-box {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px 40px;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(207, 23, 60, 0.1);
}

.single-simple-process-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--thm-base) 0%, #8a0f3d 100%);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.single-simple-process-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(var(--thm-base-rgb), 0.08) 0%,
    rgba(138, 15, 61, 0.08) 100%
  );
  border-radius: 50%;
  transform: translate(40px, 40px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.single-simple-process-box:hover:before {
  left: 0;
}

.single-simple-process-box:hover:after {
  transform: translate(20px, 20px) scale(1.2);
  opacity: 0.8;
}

.single-simple-process-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(207, 23, 60, 0.15);
  border-color: var(--thm-base);
}

.single-simple-process-box .icon {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--thm-base) 0%, #8a0f3d 100%);
  border-radius: 50%;
  margin-bottom: 30px;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}

.single-simple-process-box .icon span {
  color: #ffffff;
  font-size: 36px;
  font-weight: 400;
  transition: all 0.4s ease;
}

.single-simple-process-box:hover .icon {
  transform: scale(1.1) rotate(5deg);
  animation: pulse 2s infinite;
}

.single-simple-process-box:hover .icon span {
  animation: bounce 0.8s ease-in-out;
}

.single-simple-process-box h3 {
  color: var(--thm-black);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.single-simple-process-box:hover h3 {
  color: var(--thm-base);
}

.single-simple-process-box p {
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 3;
}

/* Loading Animation for Simple Process */
.single-simple-process-box.animate-on-load {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.single-simple-process-box.animate-on-load:nth-child(1) {
  animation-delay: 0.1s;
}

.single-simple-process-box.animate-on-load:nth-child(2) {
  animation-delay: 0.2s;
}

.single-simple-process-box.animate-on-load:nth-child(3) {
  animation-delay: 0.3s;
}

.single-simple-process-box.animate-on-load:nth-child(4) {
  animation-delay: 0.4s;
}

/* Responsive Design for Simple Process */
@media only screen and (max-width: 991px) {
  .simple-process-area {
    padding: 80px 0 80px;
  }

  .single-simple-process-box {
    padding: 40px 25px 30px;
    margin-bottom: 25px;
  }

  .single-simple-process-box .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin-bottom: 25px;
  }

  .single-simple-process-box .icon span {
    font-size: 30px;
  }

  .single-simple-process-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .simple-process-area .sec-title h2 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .simple-process-area {
    padding: 60px 0 60px;
  }

  .single-simple-process-box {
    padding: 35px 20px 25px;
  }

  .simple-process-area .sec-title h2 {
    font-size: 28px;
  }

  .simple-process-area .sec-title .sub-title p {
    font-size: 16px;
  }
}

/*===============================================
    About Company Area Styles
    Аналогичная стилизация для блока о компании
===============================================*/

.about-company-area {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 10;
  overflow: hidden;
}

.about-company-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top left,
      rgba(207, 23, 60, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(138, 15, 61, 0.03) 0%,
      transparent 50%
    );
  opacity: 0.8;
  z-index: -1;
}

.about-company-area .sec-title {
  position: relative;
  padding-bottom: 60px;
  text-align: center;
}

.about-company-area .sec-title h2 {
  position: relative;
  background: var(--thm-black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-company-area .sec-title .sub-title p {
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

/* About Company Content Styles */
.about-company-content {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 50px 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(207, 23, 60, 0.1);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.about-company-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--thm-base) 0%, #8a0f3d 100%);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.about-company-content:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    rgba(var(--thm-base-rgb), 0.08) 0%,
    rgba(138, 15, 61, 0.08) 100%
  );
  border-radius: 50%;
  transform: translate(60px, 60px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.about-company-content:hover:before {
  left: 0;
}

.about-company-content:hover:after {
  transform: translate(40px, 40px) scale(1.2);
  opacity: 0.8;
}

.about-company-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(207, 23, 60, 0.15);
  border-color: var(--thm-base);
}

.about-company-content .text-box {
  position: relative;
  z-index: 3;
}

.about-company-content .text-box p {
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.about-company-content .text-box p:last-child {
  margin-bottom: 0;
}

.about-company-content:hover .text-box p {
  color: var(--thm-black);
}

/* Loading Animation for About Company */
.about-company-content.animate-on-load {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
}

/* Floating Elements */
.about-company-area:after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: rgba(207, 23, 60, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design for About Company */
@media only screen and (max-width: 1199px) {
  .about-company-content {
    padding: 50px 40px 40px;
  }
}

@media only screen and (max-width: 991px) {
  .about-company-area {
    padding: 80px 0 80px;
  }

  .about-company-content {
    padding: 40px 30px 30px;
  }

  .about-company-area .sec-title h2 {
    font-size: 36px;
  }

  .about-company-content .text-box p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .about-company-area {
    padding: 60px 0 60px;
  }

  .about-company-content {
    padding: 35px 25px 25px;
  }

  .about-company-area .sec-title h2 {
    font-size: 28px;
  }

  .about-company-area .sec-title .sub-title p {
    font-size: 16px;
  }

  .about-company-content .text-box p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/*===============================================
    How It Works Area Styles
    Аналогичная стилизация для блока как это работает
===============================================*/

.how-it-works-area {
  position: relative;
  display: block;
  background: #f7f1eb;
  padding: 120px 0 120px;
  z-index: 10;
  overflow: hidden;
}

.how-it-works-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top left,
      rgba(207, 23, 60, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(138, 15, 61, 0.03) 0%,
      transparent 50%
    );
  opacity: 0.8;
  z-index: -1;
}

.how-it-works-area .sec-title {
  position: relative;
  padding-bottom: 60px;
  text-align: center;
}

.how-it-works-area .sec-title h2 {
  position: relative;
  background: var(--thm-black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.how-it-works-area .sec-title .sub-title p {
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

/* How It Works Content Styles */
.how-it-works-content {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 50px 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(207, 23, 60, 0.1);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  text-align: center;
}

.how-it-works-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--thm-base) 0%, #8a0f3d 100%);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.how-it-works-content:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    rgba(var(--thm-base-rgb), 0.08) 0%,
    rgba(138, 15, 61, 0.08) 100%
  );
  border-radius: 50%;
  transform: translate(60px, 60px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.how-it-works-content:hover:before {
  left: 0;
}

.how-it-works-content:hover:after {
  transform: translate(40px, 40px) scale(1.2);
  opacity: 0.8;
}

.how-it-works-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(207, 23, 60, 0.15);
  border-color: var(--thm-base);
}

.how-it-works-content .text-box {
  position: relative;
  z-index: 3;
}

.how-it-works-content .text-box p {
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  transition: all 0.4s ease;
}

.how-it-works-content:hover .text-box p {
  color: var(--thm-black);
}

/* Button Styles for How It Works */
.how-it-works-content .btns-box {
  position: relative;
  z-index: 3;
}

.how-it-works-content .btn-one {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--thm-base) 0%, #8a0f3d 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(207, 23, 60, 0.3);
}

.how-it-works-content .btn-one:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8a0f3d 0%, var(--thm-base) 100%);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.how-it-works-content .btn-one:hover:before {
  left: 0;
}

.how-it-works-content .btn-one:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(207, 23, 60, 0.4);
  color: #ffffff;
}

.how-it-works-content .btn-one .txt {
  position: relative;
  z-index: 2;
}

/* Loading Animation for How It Works */
.how-it-works-content.animate-on-load {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
}

/* Floating Elements */
.how-it-works-area:after {
  content: "";
  position: absolute;
  top: 15%;
  left: 8%;
  width: 80px;
  height: 80px;
  background: rgba(207, 23, 60, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  z-index: 1;
}

/* Additional floating element */
.how-it-works-area::after {
  animation-delay: -4s;
}

/* Responsive Design for How It Works */
@media only screen and (max-width: 1199px) {
  .how-it-works-content {
    padding: 50px 40px 40px;
  }
}

@media only screen and (max-width: 991px) {
  .how-it-works-area {
    padding: 80px 0 80px;
  }

  .how-it-works-content {
    padding: 40px 30px 30px;
  }

  .how-it-works-area .sec-title h2 {
    font-size: 36px;
  }

  .how-it-works-content .text-box p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .how-it-works-content .btn-one {
    padding: 12px 30px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .how-it-works-area {
    padding: 60px 0 60px;
  }

  .how-it-works-content {
    padding: 35px 25px 25px;
  }

  .how-it-works-area .sec-title h2 {
    font-size: 28px;
  }

  .how-it-works-area .sec-title .sub-title p {
    font-size: 16px;
  }

  .how-it-works-content .text-box p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .how-it-works-content .btn-one {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/*===============================================
    Why You Need Us Area Styles
    Аналогичная стилизация для блока почему мы нужны
===============================================*/

.why-you-need-us-area {
  position: relative;
  display: block;
  background: linear-gradient(135deg, #1a1c23 0%, #2a2d35 100%);
  padding: 120px 0 120px;
  z-index: 10;
  overflow: hidden;
}

.why-you-need-us-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top left,
      rgba(207, 23, 60, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(138, 15, 61, 0.03) 0%,
      transparent 50%
    );
  opacity: 0.8;
  z-index: -1;
}

.why-you-need-us-area .sec-title {
  position: relative;
  padding-bottom: 60px;
  text-align: center;
}

.why-you-need-us-area .sec-title h2 {
  position: relative;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.why-you-need-us-area .sec-title .sub-title p {
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

/* Why You Need Us Content Styles */
.why-you-need-us-content {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 50px 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(207, 23, 60, 0.1);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.why-you-need-us-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--thm-base) 0%, #8a0f3d 100%);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.why-you-need-us-content:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: linear-gradient(
    135deg,
    rgba(var(--thm-base-rgb), 0.08) 0%,
    rgba(138, 15, 61, 0.08) 100%
  );
  border-radius: 50%;
  transform: translate(70px, 70px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.why-you-need-us-content:hover:before {
  left: 0;
}

.why-you-need-us-content:hover:after {
  transform: translate(50px, 50px) scale(1.2);
  opacity: 0.8;
}

.why-you-need-us-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(207, 23, 60, 0.15);
  border-color: var(--thm-base);
}

.why-you-need-us-content .text-box {
  position: relative;
  z-index: 3;
}

.why-you-need-us-content .text-box p {
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
}

.why-you-need-us-content .text-box p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--thm-base);
  position: relative;
  padding-left: 30px;
}

.why-you-need-us-content .text-box p:last-child:before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  animation: pulse 2s infinite;
}

.why-you-need-us-content:hover .text-box p {
  color: var(--thm-black);
}

.why-you-need-us-content:hover .text-box p:last-child {
  color: var(--thm-base);
}

/* Loading Animation for Why You Need Us */
.why-you-need-us-content.animate-on-load {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
}

/* Floating Elements */
.why-you-need-us-area:after {
  content: "";
  position: absolute;
  top: 25%;
  left: 5%;
  width: 70px;
  height: 70px;
  background: rgba(207, 23, 60, 0.1);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
  z-index: 1;
}

/* Additional decorative element */
.why-you-need-us-area::before {
  background: radial-gradient(
      ellipse at top left,
      rgba(207, 23, 60, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(138, 15, 61, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(207, 23, 60, 0.02) 0%,
      transparent 40%
    );
}

/* Responsive Design for Why You Need Us */
@media only screen and (max-width: 1199px) {
  .why-you-need-us-content {
    padding: 50px 40px 40px;
  }
}

@media only screen and (max-width: 991px) {
  .why-you-need-us-area {
    padding: 80px 0 80px;
  }

  .why-you-need-us-content {
    padding: 40px 30px 30px;
  }

  .why-you-need-us-area .sec-title h2 {
    font-size: 36px;
  }

  .why-you-need-us-content .text-box p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .why-you-need-us-content .text-box p:last-child {
    padding-left: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .why-you-need-us-area {
    padding: 60px 0 60px;
  }

  .why-you-need-us-content {
    padding: 35px 25px 25px;
  }

  .why-you-need-us-area .sec-title h2 {
    font-size: 28px;
  }

  .why-you-need-us-area .sec-title .sub-title p {
    font-size: 16px;
  }

  .why-you-need-us-content .text-box p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .why-you-need-us-content .text-box p:last-child {
    padding-left: 20px;
    font-size: 15px;
  }

  .why-you-need-us-content .text-box p:last-child:before {
    font-size: 16px;
  }
}

/*===============================================
    Services Area Styles
    Стилизация блока услуг
===============================================*/

.services-area {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 10;
  overflow: hidden;
}

.services-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top left,
      rgba(207, 23, 60, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(138, 15, 61, 0.03) 0%,
      transparent 50%
    );
  opacity: 0.8;
  z-index: -1;
}

.services-area .sec-title {
  position: relative;
  padding-bottom: 60px;
  text-align: center;
}

.services-area .sec-title h2 {
  position: relative;
  background: var(--thm-black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.services-area .sec-title .sub-title p {
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

/* Single Services Box Styles */
.single-services-box {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px 40px;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(207, 23, 60, 0.1);
}

.single-services-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--thm-base) 0%, #8a0f3d 100%);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.single-services-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(var(--thm-base-rgb), 0.08) 0%,
    rgba(138, 15, 61, 0.08) 100%
  );
  border-radius: 50%;
  transform: translate(40px, 40px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.single-services-box:hover:before {
  left: 0;
}

.single-services-box:hover:after {
  transform: translate(20px, 20px) scale(1.2);
  opacity: 0.8;
}

.single-services-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(207, 23, 60, 0.15);
  border-color: var(--thm-base);
}

.single-services-box .icon {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--thm-base) 0%, #8a0f3d 100%);
  border-radius: 50%;
  margin-bottom: 30px;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}

.single-services-box .icon span {
  color: #ffffff;
  font-size: 36px;
  font-weight: 400;
  transition: all 0.4s ease;
}

.single-services-box:hover .icon {
  transform: scale(1.1) rotate(5deg);
  animation: pulse 2s infinite;
}

.single-services-box h3 {
  color: var(--thm-black);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.single-services-box:hover h3 {
  color: var(--thm-base);
}

.single-services-box p {
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 3;
}

/*===============================================
    Reliable Choice Area Styles
    Стилизация блока надежный выбор
===============================================*/

.reliable-choice-area {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 10;
  overflow: hidden;
}

.reliable-choice-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top left,
      rgba(207, 23, 60, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(138, 15, 61, 0.03) 0%,
      transparent 50%
    );
  opacity: 0.8;
  z-index: -1;
}

.reliable-choice-area .sec-title {
  position: relative;
  padding-bottom: 60px;
  text-align: center;
}

.reliable-choice-area .sec-title h2 {
  position: relative;
  background: var(--thm-black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.reliable-choice-area .sec-title .sub-title p {
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

/* Reliable Choice Content Styles */
.reliable-choice-content {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 50px 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(207, 23, 60, 0.1);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.reliable-choice-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--thm-base) 0%, #8a0f3d 100%);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.reliable-choice-content:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: linear-gradient(
    135deg,
    rgba(var(--thm-base-rgb), 0.08) 0%,
    rgba(138, 15, 61, 0.08) 100%
  );
  border-radius: 50%;
  transform: translate(80px, 80px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.reliable-choice-content:hover:before {
  left: 0;
}

.reliable-choice-content:hover:after {
  transform: translate(60px, 60px) scale(1.2);
  opacity: 0.8;
}

.reliable-choice-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(207, 23, 60, 0.15);
  border-color: var(--thm-base);
}

.reliable-choice-content .text-box {
  position: relative;
  z-index: 3;
}

.reliable-choice-content .text-box p {
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.reliable-choice-content .text-box p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--thm-base);
}

.reliable-choice-content:hover .text-box p {
  color: var(--thm-black);
}

.reliable-choice-content:hover .text-box p:last-child {
  color: var(--thm-base);
}

/*===============================================
    Why Choose Us Final Area Styles
    Стилизация финального блока почему выбрать нас
===============================================*/

.why-choose-us-final-area {
  position: relative;
  display: block;
  background: white;
  padding: 120px 0 120px;
  z-index: 10;
  overflow: hidden;
}

.why-choose-us-final-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top left,
      rgba(207, 23, 60, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(138, 15, 61, 0.03) 0%,
      transparent 50%
    );
  opacity: 0.8;
  z-index: -1;
}

.why-choose-us-final-area .sec-title {
  position: relative;
  padding-bottom: 60px;
  text-align: center;
}

.why-choose-us-final-area .sec-title h2 {
  position: relative;
  background: var(--thm-black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.why-choose-us-final-area .sec-title .sub-title p {
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

/* Single Why Choose Us Final Box Styles */
.single-why-choose-us-final-box {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px 40px;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(207, 23, 60, 0.1);
}

.single-why-choose-us-final-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--thm-base) 0%, #8a0f3d 100%);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.single-why-choose-us-final-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    rgba(var(--thm-base-rgb), 0.08) 0%,
    rgba(138, 15, 61, 0.08) 100%
  );
  border-radius: 50%;
  transform: translate(45px, 45px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.single-why-choose-us-final-box:hover:before {
  left: 0;
}

.single-why-choose-us-final-box:hover:after {
  transform: translate(25px, 25px) scale(1.2);
  opacity: 0.8;
}

.single-why-choose-us-final-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(207, 23, 60, 0.15);
  border-color: var(--thm-base);
}

.single-why-choose-us-final-box .icon {
  position: relative;
  display: inline-block;
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  background: linear-gradient(135deg, var(--thm-base) 0%, #8a0f3d 100%);
  border-radius: 50%;
  margin-bottom: 30px;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}

.single-why-choose-us-final-box .icon span {
  color: #ffffff;
  font-size: 38px;
  font-weight: 400;
  transition: all 0.4s ease;
}

.single-why-choose-us-final-box:hover .icon {
  transform: scale(1.15) rotate(10deg);
  animation: pulse 2s infinite;
}

.single-why-choose-us-final-box h3 {
  color: var(--thm-black);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.single-why-choose-us-final-box:hover h3 {
  color: var(--thm-base);
}

.single-why-choose-us-final-box p {
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 3;
}

/* Responsive Design for All New Areas */
@media only screen and (max-width: 991px) {
  .services-area,
  .reliable-choice-area,
  .why-choose-us-final-area {
    padding: 80px 0 80px;
  }

  .services-area .sec-title h2,
  .reliable-choice-area .sec-title h2,
  .why-choose-us-final-area .sec-title h2 {
    font-size: 36px;
  }

  .single-services-box,
  .single-why-choose-us-final-box {
    padding: 40px 25px 30px;
    margin-bottom: 25px;
  }

  .reliable-choice-content {
    padding: 40px 30px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .services-area,
  .reliable-choice-area,
  .why-choose-us-final-area {
    padding: 60px 0 60px;
  }

  .services-area .sec-title h2,
  .reliable-choice-area .sec-title h2,
  .why-choose-us-final-area .sec-title h2 {
    font-size: 28px;
  }

  .single-services-box,
  .single-why-choose-us-final-box {
    padding: 35px 20px 25px;
  }

  .reliable-choice-content {
    padding: 35px 25px 25px;
  }
}
