/* Main Css*/
@font-face {
  font-family: "MiyaFont-3";
  src: url("../font/clash-display/ClashDisplay-Light.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiyaFont-2";
  src: url("../font/clash-display/ClashDisplay-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiyaFont-1";
  src: url("../font/clash-display/ClashDisplay-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: #fff;
  color: #333;
  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  border: 0;
  max-width: 100%;
}

/* :focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
} */

/* ---------- Typography ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  color: #252525;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  text-rendering: optimizeLegibility;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem;
}

strong,
b {
  font-weight: 700;
}

small {
  font-size: 0.875rem;
}

code,
pre,
kbd,
samp {
  font-family: Consolas, Monaco, "Courier New", monospace;
}

code {
  padding: 0.15em 0.35em;
  border-radius: 3px;
  background: #f5f5f5;
}

pre {
  max-width: 100%;
  margin: 0 0 1.5rem;
  padding: 1rem;
  overflow-x: auto;
  background: #f5f5f5;
}

/* ---------- Forms ---------- */
input,
select,
textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #333;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

/* input:focus,
select:focus,
textarea:focus {
  border-color: #999;
  outline: none;
} */

/* ---------- Buttons ---------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  background: #252525;
  color: #fff;
  line-height: 1.2;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: #fff;
}

/* ---------- Common Media ---------- */
hr {
  height: 1px;
  margin: 2rem 0;
  border: 0;
  background: #eaeaea;
}

figure {
  margin: 0;
}

/* ---------- Accessibility ---------- */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

/* ---------- Utility ---------- */
.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 1.5rem, 1200px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Header */
.site-header {
  position: relative;
  top: 10px;
  left: 50%;
  z-index: 1000;
  width: min(94%, 1400px);
  transform: translateX(-50%);
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  border-radius: 50px;
  /* Neumorphism */
  box-shadow:
    12px 12px 28px rgba(163, 177, 198, 0.45),
    -12px -12px 80px rgba(255, 255, 255, 1);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* ---------- Inner ---------- */

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 8px 28px;
}

/* ---------- Logo ---------- */

.site-logo {
  flex: 0 0 auto;
}

.site-logo__link {
  display: inline-flex;
  align-items: center;
}

.site-logo__image {
  display: block;
  width: 230px;
  height: auto;
}

.main-navigation {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 0;
  padding: 0;
}

.nav-menu__item {
  position: relative;
  margin: 0;
  padding: 0;
}

.nav-menu__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  color: #012e73;
  font-family: "MiyaFont-2", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* ---------- Active / Hover ---------- */

/* .nav-menu__link:hover,
.nav-menu__item.is-active .nav-menu__link {
  color: #012e73;
  background: #eef2f7;
  box-shadow:
    inset 4px 4px 8px rgba(163, 177, 198, 0.35),
    inset -4px -4px 8px rgba(255, 255, 255, 0.9);
} */

/* .nav-menu__link:active {
  transform: scale(0.97);
  box-shadow:
    inset 5px 5px 10px rgba(163, 177, 198, 0.4),
    inset -5px -5px 10px rgba(255, 255, 255, 0.9);
} */


.menu-toggle {
  display: none;

  position: relative;

  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  padding: 0;

  border-radius: 14px;

  background: #eef2f7;

  box-shadow:
    5px 5px 10px rgba(163, 177, 198, 0.4),
    -5px -5px 10px rgba(255, 255, 255, 0.9);

  transition: box-shadow 0.25s ease;
}

.menu-toggle:active {
  box-shadow:
    inset 4px 4px 8px rgba(163, 177, 198, 0.4),
    inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.menu-toggle span {
  position: absolute;
  left: 9px;

  width: 24px;
  height: 2px;

  border-radius: 10px;

  background: #012e73;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 12px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

/* ---------- Hamburger Active ---------- */

.menu-toggle.is-active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.site-header.is-sticky {
  position: fixed;

  background: #eef2f7;

  box-shadow:
    10px 10px 25px rgba(163, 177, 198, 0.45),
    -10px -10px 25px rgba(255, 255, 255, 0.95);

  backdrop-filter: none;
}

/* Mobile */

@media (max-width: 991px) {
  /* ---------- Header ---------- */

  .site-header {
    position: fixed;
    top: 15px;
    left: 50%;
    z-index: 2000;
    width: 100%;
    border-radius: 22px;
  }

  .site-header__inner {
    min-height: 70px;
    padding: 8px 18px;
  }

  .site-logo__image {
    width: 180px;
  }

  /* ---------- Hamburger ---------- */

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2100;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
  }

  /* ---------- Full Screen Navigation ---------- */

  .main-navigation {
    position: fixed;
    top: 0%;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-height: none;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    border-radius: 0;
    background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
    box-shadow:
      12px 12px 30px rgba(163, 177, 198, 0.45),
      -12px -12px 30px rgba(255, 255, 255, 0.95);
    pointer-events: none;
    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  /* ---------- Open ---------- */

  .main-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    max-height: none;
  }

  /* ---------- Menu ---------- */

  .nav-menu {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 110px 25px 50px;
    list-style: none;
  }

  .nav-menu__item {
    width: fit-content;
    max-width: 420px;
    margin: 0;
    padding: 0;
  }

  .nav-menu__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    border-radius: 18px;
    color: #012e73;
    font-family: "MiyaFont-2", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;

    text-transform: uppercase;
    text-decoration: none;

    background: linear-gradient(145deg, #e5eaf0, #c7dcf8);

    box-shadow:
      6px 6px 12px rgba(163, 177, 198, 0.45),
      -6px -6px 12px rgba(255, 255, 255, 0.9);

    transition:
      box-shadow 0.25s ease,
      transform 0.25s ease;
  }

  /* ---------- Active / Touch ---------- */

  .nav-menu__link:active,
  .nav-menu__item.is-active .nav-menu__link {
    transform: scale(0.97);

    box-shadow:
      inset 5px 5px 10px rgba(163, 177, 198, 0.4),
      inset -5px -5px 10px rgba(255, 255, 255, 0.9);
  }
}

@media (max-width: 575px) {
  .site-header {
    top: 12px;
    width: 94%;

    border-radius: 20px;
  }

  .site-header__inner {
    min-height: 64px;
    padding: 7px 14px;
  }

  .site-logo__image {
    width: 145px;
  }

  .nav-menu {
    padding: 100px 20px 40px;
  }

  .nav-menu__item {
    max-width: 360px;
  }

  .nav-menu__link {
    min-height: 54px;
    font-size: 14px;
  }
}

/* Hero Slider */

.hero-slider {
  position: relative;
  width: 100%;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: #fff;
  overflow: hidden;
}

.hero-slider__card {
  position: relative;
  width: 100%;
  max-width: 1350px;
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    22px 22px 45px rgba(137, 157, 184, 0.45),
    -22px -22px 45px rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-slide {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;

  z-index: 2;
}

.hero-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-slide.is-active .hero-slide__image {
  transform: scale(1);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(0, 0, 0, 0.58),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.08)
  );

  z-index: 1;
}

.hero-slide__content {
  position: absolute;

  z-index: 3;

  top: 50%;
  left: 8%;

  width: 520px;

  transform: translateY(-50%) translateX(-40px);

  opacity: 0;

  transition:
    opacity 0.8s ease 0.25s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.hero-slide.is-active .hero-slide__content {
  opacity: 1;

  transform: translateY(-50%) translateX(0);
}

.hero-slide__subtitle {
  display: inline-block;

  margin-bottom: 15px;

  color: #fff;

  font-family: "MiyaFont-2", Arial, sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.hero-slide__title {
  margin: 0 0 18px;

  color: #fff;

  font-family: "MiyaFont-1", Arial, sans-serif;

  font-size: clamp(42px, 5vw, 68px);

  font-weight: 700;

  line-height: 1.05;
}

.hero-slide__text {
  max-width: 480px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

.hero-slide__button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  min-width: 165px;
  min-height: 52px;

  padding: 12px 25px;

  border-radius: 15px;

  color: #012e73;

  background: linear-gradient(145deg, #e5eaf0, #c7dcf8);

  box-shadow:
    8px 8px 18px rgba(0, 0, 0, 0.28),
    -8px -8px 18px rgba(255, 255, 255, 0.8);

  font-family: "MiyaFont-2", Arial, sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-slide__button:hover {
  color: #012e73;

  transform: translateY(-3px);

  box-shadow:
    10px 10px 22px rgba(0, 0, 0, 0.3),
    -10px -10px 22px rgba(255, 255, 255, 0.85);
}

.hero-slider__arrow {
  position: absolute;

  top: 50%;

  z-index: 10;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  color: #012e73;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    8px 8px 18px rgba(137, 157, 184, 0.45),
    -8px -8px 18px rgba(255, 255, 255, 0.95);

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-slider__arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.hero-slider__arrow:active {
  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.4),
    inset -5px -5px 10px rgba(255, 255, 255, 0.8);
}

.hero-slider__arrow--prev {
  left: 20px;
}

.hero-slider__arrow--next {
  right: 20px;
}

.hero-slider__dots {
  position: absolute;

  left: 50%;
  bottom: 25px;

  z-index: 10;

  display: flex;

  gap: 10px;

  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 10px;
  height: 10px;

  padding: 0;

  border: none;
  border-radius: 50%;

  background: rgba(181, 214, 255, 0.863);

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.hero-slider__dot.is-active {
  width: 30px;
  border-radius: 10px;
  background: #8bcfff;
}

/* Tablet */

@media (max-width: 991px) {
  .hero-slider {
    height: 650px;
    padding: 35px;
  }

  .hero-slider__card {
    border-radius: 32px;
  }

  .hero-slide__content {
    left: 8%;
    width: 470px;
  }

  .hero-slide__title {
    font-size: 48px;
  }
}

/* Mobile */

@media (max-width: 575px) {
  .hero-slider {
    height: 620px;
    margin-top: 80px;
    padding: 20px;
  }

  .hero-slider__card {
    border-radius: 25px;
  }

  .hero-slide__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.65)
    );
  }

  .hero-slide__content {
    left: 25px;
    right: 25px;
    bottom: 65px;
    top: auto;

    width: auto;

    transform: translateY(30px);
  }

  .hero-slide.is-active .hero-slide__content {
    transform: translateY(0);
  }

  .hero-slide__subtitle {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .hero-slide__title {
    font-size: 32px;
  }

  .hero-slide__text {
    font-size: 13px;
  }

  .hero-slide__button {
    min-height: 45px;

    min-width: 140px;

    font-size: 10px;
  }

  .hero-slider__arrow {
    width: 40px;
    height: 40px;
  }

  .hero-slider__arrow--prev {
    left: 8px;
  }

  .hero-slider__arrow--next {
    right: 8px;
  }
}

/* About Section */
.about-section {
  padding: 60px 0;
  background: #fff;
}

/* ---------- Layout ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.about-content {
  padding: 45px;
  border-radius: 30px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    14px 14px 30px rgba(137, 157, 184, 0.35),
    -14px -14px 30px rgba(255, 255, 255, 0.95);
}

/* ---------- Subtitle ---------- */

.about-sub-title {
  display: inline-block;
  margin-bottom: 12px;
  color: #012e73;
  font-family: "MiyaFont-2", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ---------- Title ---------- */

.about-title {
  max-width: 600px;
  margin: 0 0 22px;
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
}

.about-title span {
  display: block;
  color: #1d5ca8;
}

/* ---------- Description ---------- */

.about-description {
  max-width: 620px;
  margin: 0 0 28px;
  color: #53657b;
  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #344b65;
  font-size: 14px;
  line-height: 24px;
}

/* ---------- List Icon ---------- */

.about-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  color: #012e73;
  font-size: 14px;
  font-weight: 700;
  box-shadow:
    4px 4px 8px rgba(137, 157, 184, 0.4),
    -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 50px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    7px 7px 14px rgba(137, 157, 184, 0.4),
    -7px -7px 14px rgba(255, 255, 255, 0.9);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-button:hover {
  color: #012e73;

  transform: translateY(-2px);

  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.35),
    inset -5px -5px 10px rgba(255, 255, 255, 0.9);
}

.about-button:active {
  transform: translateY(0);

  box-shadow:
    inset 6px 6px 12px rgba(137, 157, 184, 0.4),
    inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}

.about-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-card {
  width: 100%;
  padding: 16px;

  border-radius: 35px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    18px 18px 35px rgba(137, 157, 184, 0.4),
    -18px -18px 35px rgba(255, 255, 255, 0.95);
}

.about-image {
  display: block;

  width: 100%;
  height: 520px;

  object-fit: cover;

  border-radius: 25px;

  box-shadow:
    inset 5px 5px 12px rgba(137, 157, 184, 0.25),
    inset -5px -5px 12px rgba(255, 255, 255, 0.8);
}

/* Tablet */

@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content {
    padding: 40px;
  }

  .about-image-card {
    max-width: 700px;
    width: 100%;
  }

  .about-image {
    height: 450px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .about-section {
    padding: 60px 0;
  }

  .about-grid {
    gap: 35px;
  }

  .about-content {
    padding: 30px 25px;
    border-radius: 24px;
  }

  .about-sub-title {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-image-card {
    padding: 10px;
    border-radius: 25px;
  }

  .about-image {
    height: 350px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 50px 0;
  }

  .about-content {
    padding: 25px 20px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-list li {
    align-items: flex-start;
    font-size: 14px;
  }

  .about-image {
    height: 300px;
  }
}

/* Services Section */

.services-section {
  padding: 60px 0;
  background: #fff;
}

.services-contents {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}

/* ---------- Subtitle ---------- */

.services-sub-title {
  display: inline-block;

  margin-bottom: 10px;

  color: #012e73;

  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;

  text-transform: uppercase;
}

/* ---------- Main Title ---------- */

.services-title {
  margin: 0;
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;

  text-align: center;
}

/* ---------- Decorative Line ---------- */

.services-title::after {
  content: "";

  display: block;

  width: 55px;
  height: 4px;

  margin: 16px auto 0;

  border-radius: 10px;

  background: #012e73;

  box-shadow:
    3px 3px 6px rgba(137, 157, 184, 0.4),
    -3px -3px 6px rgba(255, 255, 255, 0.8);
}

/* ---------- Mobile ---------- */

@media (max-width: 767px) {
  .services-contents {
    margin-bottom: 35px;
  }

  .services-sub-title {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .services-title {
    font-size: 32px;
  }
}

/* ---------- Grid ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    14px 14px 28px rgba(137, 157, 184, 0.45),
    -14px -14px 28px rgba(255, 255, 255, 0.9);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* ---------- Card Hover ---------- */

.service-card:hover {
  transform: translateY(-8px);

  box-shadow:
    18px 18px 35px rgba(137, 157, 184, 0.5),
    -18px -18px 35px rgba(255, 255, 255, 0.95);
}

.service-card__image {
  position: relative;
  margin: 14px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.25),
    inset -5px -5px 10px rgba(255, 255, 255, 0.75);
}

.service-card__image img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__content {
  padding: 25px 28px 30px;
  text-align: center;
}

/* ---------- Title ---------- */

.service-card__title {
  margin: 0 0 14px;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.service-card__title a {
  color: #012e73;
  text-decoration: none;
  transition: color 0.25s ease;
}

.service-card__title a:hover {
  color: #1d5ca8;
}

/* ---------- Description ---------- */

.service-card__description {
  margin: 0 auto 24px;

  max-width: 340px;

  color: #53657b;

  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 50px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    6px 6px 12px rgba(137, 157, 184, 0.4),
    -6px -6px 12px rgba(255, 255, 255, 0.85);

  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

/* ---------- Button Hover ---------- */

.service-card__button:hover {
  color: #012e73;

  transform: translateY(-2px);

  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.35),
    inset -5px -5px 10px rgba(255, 255, 255, 0.85);
}

/* ---------- Button Active ---------- */

.service-card__button:active {
  transform: translateY(0);

  box-shadow:
    inset 6px 6px 12px rgba(137, 157, 184, 0.4),
    inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}

/* Tablet */

@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }

  .service-card__image img {
    height: 230px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .services-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .service-card__image img {
    height: 220px;
  }

  .service-card__content {
    padding: 22px 22px 28px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 50px 0;
  }

  .service-card {
    border-radius: 22px;
  }

  .service-card__image {
    margin: 10px;
    border-radius: 17px;
  }

  .service-card__image img {
    height: 200px;
    border-radius: 17px;
  }

  .service-card__content {
    padding: 20px 18px 25px;
  }

  .service-card__title {
    font-size: 19px;
  }

  .service-card__description {
    font-size: 14px;
  }
}

/* Why choose us */

.why-choose-us-section {
  padding: 60px 0;
  background: #fff;
}

.why-choose-us-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.why-choose-us-images {
  position: relative;
  min-height: 350px;
}

/* ---------- Image Base ---------- */

.why-image {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  padding: 14px;
  box-shadow:
    16px 16px 32px rgba(137, 157, 184, 0.4),
    -16px -16px 32px rgba(255, 255, 255, 0.95);
}

.why-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ---------- Back Image ---------- */

.why-image--back {
  top: 20px;
  left: 20px;
  width: 72%;
  height: 420px;
  transform: rotate(-7deg);
}

/* ---------- Front Image ---------- */

.why-image--front {
  right: 10px;
  bottom: 20px;
  width: 65%;
  height: 390px;
  transform: rotate(7deg);
  z-index: 2;
}

.why-choose-us-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.why-content-box {
  padding: 40px;
  border-radius: 30px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    14px 14px 30px rgba(137, 157, 184, 0.35),
    -14px -14px 30px rgba(255, 255, 255, 0.95);
}

/* ---------- Subtitle ---------- */

.why-sub-title {
  display: inline-block;
  margin-bottom: 12px;
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 20px;

  text-transform: uppercase;
}

/* ---------- Title ---------- */

.why-title {
  margin: 0 0 20px;
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
}

.why-title span {
  display: block;
  color: #1d5ca8;
}

/* ---------- Paragraph ---------- */

.why-description {
  max-width: 650px;
  margin: 0;
  color: #53657b;
  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.why-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- Counter Card ---------- */

.why-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  text-align: center;
  box-shadow:
    10px 10px 22px rgba(137, 157, 184, 0.4),
    -10px -10px 22px rgba(255, 255, 255, 0.9);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* ---------- Counter Hover ---------- */

.why-counter:hover {
  transform: translateY(-6px);
  box-shadow:
    14px 14px 28px rgba(137, 157, 184, 0.45),
    -14px -14px 28px rgba(255, 255, 255, 0.95);
}

/* ---------- Number ---------- */

.why-counter__number {
  display: block;
  margin-bottom: 8px;
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

/* ---------- Counter Title ---------- */

.why-counter__title {
  color: #53657b;

  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.5px;
  line-height: 1.4;

  text-transform: uppercase;
}

/* Tablet */

@media (max-width: 991px) {
  .why-choose-us-section {
    padding: 80px 0;
  }

  .why-choose-us-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .why-choose-us-images {
    width: 100%;
    max-width: 650px;

    margin: 0 auto;
  }

  .why-choose-us-content {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .why-choose-us-section {
    padding: 60px 0;
  }

  .why-choose-us-grid {
    gap: 50px;
  }

  .why-choose-us-images {
    min-height: 450px;
  }

  .why-image {
    padding: 10px;
    border-radius: 22px;
  }

  .why-image img {
    border-radius: 15px;
  }

  .why-image--back {
    width: 72%;
    height: 320px;
  }

  .why-image--front {
    width: 65%;
    height: 290px;
  }

  .why-content-box {
    padding: 30px 25px;
    border-radius: 24px;
  }

  .why-title {
    font-size: 32px;
  }

  .why-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .why-counters {
    gap: 14px;
  }

  .why-counter {
    min-height: 125px;
    padding: 15px 10px;
    border-radius: 18px;
  }

  .why-counter__number {
    font-size: 27px;
  }

  .why-counter__title {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .why-choose-us-images {
    min-height: 390px;
  }

  .why-image--back {
    top: 15px;
    left: 5px;

    width: 75%;
    height: 280px;
  }

  .why-image--front {
    right: 0;
    bottom: 10px;

    width: 68%;
    height: 250px;
  }

  .why-content-box {
    padding: 25px 20px;
  }

  .why-counters {
    gap: 10px;
  }

  .why-counter {
    min-height: 110px;
    padding: 12px 6px;
  }

  .why-counter__number {
    font-size: 23px;
  }

  .why-counter__title {
    font-size: 9px;
  }
}

/* What We Offer */

.offer-section {
  padding: 60px 0;
  background: #fff;
}

.offer-heading {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.offer-sub-title {
  display: inline-block;

  margin-bottom: 10px;

  color: #012e73;

  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;
  line-height: 1.4;

  text-transform: uppercase;
}

.offer-title {
  margin: 0;
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 10px;
}

/* ---------- Heading Line ---------- */

.offer-heading-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 15px 0 20px;
}

.offer-heading-line::before,
.offer-heading-line::after {
  content: "";

  width: 35px;
  height: 2px;

  border-radius: 10px;

  background: #012e73;
}

.offer-heading-line span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #012e73;

  box-shadow:
    2px 2px 5px rgba(137, 157, 184, 0.4),
    -2px -2px 5px rgba(255, 255, 255, 0.8);
}

.offer-description {
  max-width: 700px;

  margin: 0 auto;

  color: #53657b;

  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 15px;

  line-height: 1.8;
}

.offer-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 55px;
}

/* ---------- Service Card ---------- */

.offer-service {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  min-height: 170px;

  padding: 20px 10px;

  border-radius: 25px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  text-align: center;

  text-decoration: none;

  box-shadow:
    10px 10px 22px rgba(137, 157, 184, 0.4),
    -10px -10px 22px rgba(255, 255, 255, 0.95);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.offer-service:hover {
  color: #012e73;

  transform: translateY(-7px);

  box-shadow:
    15px 15px 28px rgba(137, 157, 184, 0.45),
    -15px -15px 28px rgba(255, 255, 255, 0.98);
}

/* ---------- Service Icon ---------- */

.offer-service__icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 75px;
  height: 75px;

  margin-bottom: 18px;

  border-radius: 50%;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  font-size: 30px;

  box-shadow:
    6px 6px 12px rgba(137, 157, 184, 0.4),
    -6px -6px 12px rgba(255, 255, 255, 0.9);
}

.offer-service__title {
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.5px;

  text-transform: uppercase;
}

.offer-details {
  display: grid;

  grid-template-columns:
    1fr
    1fr
    1fr;

  gap: 30px;
}

/* ---------- Detail Columns ---------- */

.offer-details__column {
  display: flex;

  flex-direction: column;

  gap: 30px;
}

.offer-detail-card {
  display: flex;

  align-items: center;

  gap: 22px;

  min-height: 210px;

  padding: 28px;

  border-radius: 28px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    12px 12px 25px rgba(137, 157, 184, 0.4),
    -12px -12px 25px rgba(255, 255, 255, 0.95);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.offer-detail-card:hover {
  transform: translateY(-5px);

  box-shadow:
    16px 16px 30px rgba(137, 157, 184, 0.45),
    -16px -16px 30px rgba(255, 255, 255, 0.98);
}

.offer-detail-card__icon {
  display: flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 80px;

  width: 80px;
  height: 80px;

  border-radius: 50%;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  font-size: 30px;

  box-shadow:
    7px 7px 14px rgba(137, 157, 184, 0.4),
    -7px -7px 14px rgba(255, 255, 255, 0.9);
}

.offer-detail-card__content {
  flex: 1;
}

.offer-detail-card__content h3 {
  margin: 0 0 12px;

  color: #012e73;

  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;

  line-height: 1.3;
}

.offer-detail-card__content h3 a {
  color: inherit;

  text-decoration: none;
}

.offer-detail-card__content h3::after {
  content: "";

  display: block;

  width: 30px;
  height: 2px;

  margin-top: 8px;

  border-radius: 10px;

  background: #012e73;
}

.offer-detail-card__content p {
  margin: 0;

  color: #53657b;

  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 13px;

  line-height: 1.7;
}

.offer-worker {
  height: 100%;

  min-height: 450px;

  padding: 15px;

  border-radius: 30px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    15px 15px 30px rgba(137, 157, 184, 0.4),
    -15px -15px 30px rgba(255, 255, 255, 0.95);
}

.offer-worker__inner {
  position: relative;
  width: 100%;
  height: 100%;

  min-height: 420px;

  overflow: hidden;

  border-radius: 22px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4),
    rgba(199, 220, 248, 0.3)
  );

  box-shadow:
    inset 5px 5px 12px rgba(137, 157, 184, 0.2),
    inset -5px -5px 12px rgba(255, 255, 255, 0.8);
}

.offer-worker__inner img {
  position: absolute;

  bottom: 0;
  left: 50%;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  transform: translateX(-50%);
}

/* Tablet */

@media (max-width: 1100px) {
  .offer-services {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-details {
    grid-template-columns: 1fr 1fr;
  }

  .offer-worker {
    grid-column: 1 / -1;
    min-height: 500px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  .offer-worker__inner {
    min-height: 470px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .offer-section {
    padding: 70px 0;
  }

  .offer-heading {
    margin-bottom: 40px;
  }

  .offer-title {
    font-size: 32px;
  }

  .offer-description {
    font-size: 14px;
  }

  /* Top Services */

  .offer-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
  }

  .offer-service {
    min-height: 145px;

    border-radius: 20px;
  }

  .offer-service__icon {
    width: 62px;
    height: 62px;

    margin-bottom: 14px;

    font-size: 24px;
  }

  .offer-service__title {
    font-size: 10px;
  }

  /* Detailed Services */

  .offer-details {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .offer-details__column {
    gap: 20px;
  }

  .offer-detail-card {
    min-height: 180px;

    padding: 22px;

    border-radius: 22px;
  }

  .offer-detail-card__icon {
    flex-basis: 65px;

    width: 65px;
    height: 65px;

    font-size: 24px;
  }

  /* Worker */

  .offer-worker {
    min-height: 400px;

    padding: 10px;

    border-radius: 24px;
  }

  .offer-worker__inner {
    min-height: 380px;

    border-radius: 17px;
  }
}

.offer-worker__inner img {
  position: absolute;
  background-position: cover;
  object-position: 20% center;
}

@media (max-width: 480px) {
  .offer-section {
    padding: 55px 0;
  }

  .offer-services {
    grid-template-columns: 1fr 1fr;
  }

  .offer-service {
    min-height: 135px;

    padding: 15px 8px;
  }

  .offer-service__icon {
    width: 55px;
    height: 55px;

    font-size: 21px;
  }

  .offer-detail-card {
    align-items: flex-start;

    gap: 15px;

    padding: 20px;
  }

  .offer-detail-card__icon {
    flex-basis: 58px;

    width: 58px;
    height: 58px;

    font-size: 21px;
  }

  .offer-detail-card__content h3 {
    font-size: 16px;
  }

  .offer-detail-card__content p {
    font-size: 12px;
  }

  .offer-worker {
    min-height: 350px;
  }

  .offer-worker__inner {
    min-height: 330px;
  }
}

/* Testimonials */
.testimonials-section {
  padding: 60px 0;
  background: #fff;
}

.testimonials-heading {
  max-width: 750px;
  margin: 0 auto 55px;
  text-align: center;
}

.testimonials-sub-title {
  display: inline-block;
  margin-bottom: 10px;
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testimonials-title {
  margin: 0 0 16px;
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
}

.testimonials-intro {
  max-width: 600px;
  margin: 0 auto;
  color: #53657b;
  font-size: 14px;
  line-height: 20px;
}

.testimonials-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 25px 15px 35px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc((100% - 60px) / 3);
  scroll-snap-align: start;
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 3);
  min-height: 300px;
  padding: 45px 30px 25px;
  border-radius: 30px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  scroll-snap-align: start;
  box-shadow: 14px 14px 30px rgba(137, 157, 184, 0.38);
  /* -14px -14px 30px rgba(255, 255, 255, 0.95); */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);

  box-shadow:
    18px 18px 35px rgba(137, 157, 184, 0.45),
    18px 18px 35px rgba(255, 255, 255, 0.98);
}

.testimonial-quote {
  position: absolute;

  top: 20px;
  right: 28px;

  color: #012e73;

  font-family: Georgia, serif;
  font-size: 75px;
  font-weight: 700;

  line-height: 0.8;

  opacity: 0.18;
}

.testimonial-text {
  margin: 0 0 30px;

  color: #40566f;

  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 10px 16px 10px 10px;
  border-radius: 18px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.28),
    inset -5px -5px 10px rgba(255, 255, 255, 0.85);
}

.testimonial-profile__image {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    4px 4px 8px rgba(137, 157, 184, 0.35),
    -4px -4px 8px rgba(255, 255, 255, 0.85);
}

.testimonial-profile__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-profile__content {
  min-width: 0;
}

.testimonial-profile__name {
  margin: 0 0 4px;
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

.testimonial-profile__role {
  display: block;
  color: #64778d;
  font-size: 14px;
  line-height: 18px;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}

/* ---------- Arrow ---------- */

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  padding: 0;

  border-radius: 50%;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  font-size: 18px;

  box-shadow:
    6px 6px 12px rgba(137, 157, 184, 0.4),
    -6px -6px 12px rgba(255, 255, 255, 0.9);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.testimonial-arrow:hover {
  transform: translateY(-2px);
}

.testimonial-arrow:active {
  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.35),
    inset 5px 5px 10px rgba(255, 255, 255, 0.85);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border-radius: 50%;

  background: #c7d1de;

  box-shadow: none;

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.testimonial-dot.is-active {
  width: 25px;

  border-radius: 10px;

  background: #012e73;
}

/* Tablet */

@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

/* Mobile */

@media (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-heading {
    margin-bottom: 25px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-intro {
    font-size: 15px;
  }

  .testimonials-carousel {
    gap: 20px;
    padding-inline: 10px;
  }

  .testimonial-card {
    flex: 0 0 88%;

    min-height: 360px;

    padding: 40px 22px 22px;

    border-radius: 24px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex-basis: 92%;
  }

  .testimonial-profile {
    padding-right: 12px;
  }

  .testimonial-profile__image {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .testimonial-arrow {
    width: 42px;
    height: 42px;
  }
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background: #fff;
}

.contact-heading {
  max-width: 800px;
  margin: 0 auto 55px;
  text-align: center;
}

.contact-sub-title {
  display: inline-block;
  margin-bottom: 10px;
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-title {
  margin: 0 0 16px;

  color: #012e73;

  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
}

.contact-description {
  max-width: 650px;

  margin: 0 auto;

  color: #53657b;

  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 45px;

  align-items: stretch;
}

.contact-map-card,
.contact-form-card {
  padding: 15px;

  border-radius: 30px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    15px 15px 32px rgba(137, 157, 184, 0.4),
    -15px -15px 32px rgba(255, 255, 255, 0.95);
}

.contact-map-card {
  min-height: 400px;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  border-radius: 22px;
  box-shadow:
    inset 5px 5px 12px rgba(137, 157, 184, 0.25),
    inset -5px -5px 12px rgba(255, 255, 255, 0.8);
}

.contact-form-card {
  display: flex;
  align-items: center;

  padding: 40px;
}

.contact-form {
  width: 100%;
}

/* ---------- Form Group ---------- */

.contact-form__group {
  margin-bottom: 20px;
}

.contact-form__group label {
  display: block;

  margin-bottom: 8px;

  color: #012e73;

  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.contact-form__group input,
.contact-form__group textarea {
  display: block;

  width: 100%;

  border: 0;
  outline: 0;

  border-radius: 15px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #344b65;

  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 15px;

  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.3),
    inset -5px -5px 10px rgba(255, 255, 255, 0.85);

  transition: box-shadow 0.25s ease;
}

.contact-form__group input {
  height: 52px;

  padding: 0 17px;
}

.contact-form__group textarea {
  min-height: 140px;

  padding: 15px 17px;

  resize: vertical;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
  color: #7d8da0;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  box-shadow:
    inset 6px 6px 12px rgba(137, 157, 184, 0.35),
    inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}

.contact-form__button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 52px;

  margin-top: 5px;

  border: 0;
  border-radius: 15px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.7px;

  text-transform: uppercase;

  cursor: pointer;

  box-shadow:
    7px 7px 14px rgba(137, 157, 184, 0.4),
    -7px -7px 14px rgba(255, 255, 255, 0.9);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-form__button:hover {
  transform: translateY(-2px);

  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.35),
    inset -5px -5px 10px rgba(255, 255, 255, 0.9);
}

.contact-form__button:active {
  transform: translateY(0);

  box-shadow:
    inset 6px 6px 12px rgba(137, 157, 184, 0.4),
    inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}

/* Tablet */

@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .contact-map-card {
    min-height: 450px;
  }

  .contact-map-card iframe {
    min-height: 420px;
  }

  .contact-form-card {
    padding: 35px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-heading {
    margin-bottom: 35px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-map-card,
  .contact-form-card {
    border-radius: 24px;
  }

  .contact-map-card {
    padding: 10px;
    min-height: 350px;
  }

  .contact-map-card iframe {
    min-height: 330px;
    border-radius: 17px;
  }

  .contact-form-card {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-map-card {
    min-height: 300px;
  }

  .contact-map-card iframe {
    min-height: 280px;
  }

  .contact-form__group input {
    height: 50px;
  }
}

.site-footer {
  padding: 60px 0 0;
  background: #fff;
}

.footer-main {
  display: grid;

  grid-template-columns:
    1.4fr
    0.8fr
    1fr
    1.3fr;

  gap: 35px;

  padding: 45px;

  border-radius: 35px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    16px 16px 35px rgba(137, 157, 184, 0.4),
    -16px -16px 35px rgba(255, 255, 255, 0.95);
}

.footer-brand {
  padding-right: 20px;
}

.footer-logo {
  display: inline-flex;

  align-items: center;

  margin-bottom: 20px;
}

.footer-logo img {
  display: block;

  width: 220px;
  height: auto;
}

.footer-about {
  max-width: 330px;

  margin: 0 0 25px;

  color: #53657b;

  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.footer-social {
  display: flex;

  align-items: center;

  gap: 12px;
}

.footer-social__link {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 13px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  color: #012e73;

  font-size: 15px;

  text-decoration: none;

  box-shadow:
    6px 6px 12px rgba(137, 157, 184, 0.4),
    -6px -6px 12px rgba(255, 255, 255, 0.9);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.footer-social__link:hover {
  color: #012e73;

  transform: translateY(-3px);

  box-shadow:
    inset 5px 5px 10px rgba(137, 157, 184, 0.35),
    inset -5px -5px 10px rgba(255, 255, 255, 0.9);
}

.footer-column {
  padding: 5px 10px;
}

.footer-title {
  position: relative;

  margin: 0 0 25px;

  padding-bottom: 12px;

  color: #012e73;

  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;

  line-height: 1.3;
}

.footer-title::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 35px;
  height: 3px;

  border-radius: 10px;

  background: #012e73;
}

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: inline-block;
  color: #53657b;
  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover {
  color: #012e73;
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact .footer-title {
  margin-bottom: 8px;
}

.footer-contact__item {
  display: flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

/* ---------- Contact Icon ---------- */

.footer-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  color: #012e73;
  font-size: 14px;
  box-shadow:
    5px 5px 10px rgba(137, 157, 184, 0.35),
    -5px -5px 10px rgba(255, 255, 255, 0.85);
}

/* ---------- Contact Text ---------- */

.footer-contact__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.footer-contact__content small {
  color: #718196;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-contact__content strong {
  color: #344b65;
  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 35px;
  padding: 22px 5px;
  border-top: 1px solid rgba(1, 46, 115, 0.1);
}

.footer-copyright,
.footer-credit {
  margin: 0;
  color: #718196;
  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.footer-copyright span {
  color: #012e73;
  font-weight: 700;
  text-decoration: none;
}

.footer-credit {
  text-align: right;
}

.footer-credit a {
  color: #012e73;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-credit a:hover {
  color: #1d5ca8;
}

/* Tablet */
@media (max-width: 991px) {
  .site-footer {
    padding-top: 80px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    padding: 40px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 35px;

    padding: 30px 25px;

    border-radius: 25px;
  }

  .footer-brand,
  .footer-column {
    padding: 0;
  }

  .footer-logo img {
    width: 190px;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: center;

    gap: 10px;

    padding: 20px 5px;

    text-align: center;
  }

  .footer-credit {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 25px 20px;
  }

  .footer-social__link {
    width: 40px;
    height: 40px;
  }

  .footer-contact__icon {
    flex-basis: 40px;

    width: 40px;
    height: 40px;
  }

  .footer-contact__content strong {
    font-size: 12px;
  }
}

/* Home Care Services */
.mmhc-section {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.mmhc-intro {
  width: min(850px, 100%);

  margin: 0 auto 100px;

  padding: 0 20px;

  text-align: center;
}

.mmhc-eyebrow {
  display: inline-block;

  margin-bottom: 12px;

  color: #012e73;

  font-family: "MiyaFont-2", Arial, sans-serif;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  line-height: 1.4;

  text-transform: uppercase;
}

.mmhc-intro h2 {
  margin: 0;
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.48px;
}

.mmhc-intro h2 em {
  color: #1b4d87;
  font-style: normal;
}

.mmhc-intro > p {
  max-width: 680px;
  margin: 20px auto 0;
  color: #52677f;
  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.mmhc-item {
  width: min(1200px, calc(100% - 80px));

  min-height: 180px;

  margin: 0 auto 100px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 60px;

  position: relative;
}

.mmhc-visual {
  width: 100%;

  height: 420px;

  padding: 14px;

  position: relative;

  overflow: hidden;

  border-radius: 30px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    14px 14px 30px rgba(137, 157, 184, 0.35),
    -14px -14px 30px rgba(255, 255, 255, 0.95);
}

.mmhc-visual img {
  position: absolute;
  top: 14px;
  left: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  display: block;
  object-fit: cover;
  border-radius: 22px;
  transform: translate3d(0, 0, 0) scale(1.08);
  transform-origin: center center;
  will-change: transform;
  z-index: 1;
  transition: transform 0.15s linear;
}

.mmhc-info {
  min-height: 420px;

  padding: 45px;

  position: relative;

  display: flex;

  align-items: center;

  border-radius: 30px;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  box-shadow:
    14px 14px 30px rgba(137, 157, 184, 0.35),
    -14px -14px 30px rgba(255, 255, 255, 0.95);
}

.mmhc-info-inner {
  position: relative;

  z-index: 3;
}

.mmhc-category {
  display: inline-block;

  margin-bottom: 12px;

  color: #012e73;

  font-family: "MiyaFont-2", Arial, sans-serif;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  line-height: 1.4;

  text-transform: uppercase;
}

.mmhc-info h3 {
  margin: 0 0 18px;

  color: #012e73;

  font-family: "MiyaFont-2", Arial, sans-serif;

  font-size: 40px;

  font-weight: 700;

  line-height: 44px;

  letter-spacing: -0.48px;
}

.mmhc-info h4 {
  margin: 0 0 16px;

  color: #214d7d;

  font-family: "MiyaFont-2", Arial, sans-serif;

  font-size: 17px;

  font-weight: 600;

  line-height: 1.5;
}

.mmhc-info-inner > p {
  max-width: 480px;

  margin: 0;

  color: #52677f;

  font-family: "MiyaFont-2", Arial, sans-serif;

  font-size: 15px;

  font-weight: 400;

  line-height: 1.8;
}

.mmhc-index {
  position: absolute;

  top: 15px;

  right: 30px;

  color: rgba(1, 46, 115, 0.07);

  font-family: "MiyaFont-2", Arial, sans-serif;

  font-size: 150px;

  font-weight: 700;

  line-height: 1;

  pointer-events: none;

  user-select: none;
}

.mmhc-action {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 28px;

  padding: 12px 20px;

  color: #012e73;

  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);

  border-radius: 50px;

  box-shadow:
    7px 7px 16px rgba(137, 157, 184, 0.35),
    -7px -7px 16px rgba(255, 255, 255, 0.9);

  font-family: "MiyaFont-2", Arial, sans-serif;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mmhc-action span {
  font-size: 18px;

  transition: transform 0.3s ease;
}

.mmhc-action:hover {
  transform: translateY(-3px);

  box-shadow:
    9px 9px 20px rgba(137, 157, 184, 0.4),
    -9px -9px 20px rgba(255, 255, 255, 0.95);
}

.mmhc-action:hover span {
  transform: translateX(5px);
}

.mmhc-reveal {
  opacity: 0;

  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);

  will-change: transform, opacity;
}

.mmhc-item-left.mmhc-reveal {
  transform: translateY(70px);
}

.mmhc-item-left.mmhc-reveal .mmhc-visual {
  transform: translateX(-70px) scale(0.95);

  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mmhc-item-left.mmhc-reveal .mmhc-info {
  transform: translateX(70px);

  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mmhc-item-right.mmhc-reveal {
  transform: translateY(70px);
}

.mmhc-item-right.mmhc-reveal .mmhc-info {
  transform: translateX(-70px);

  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mmhc-item-right.mmhc-reveal .mmhc-visual {
  transform: translateX(70px) scale(0.95);

  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mmhc-reveal.mmhc-active {
  opacity: 1;

  transform: translateY(0);
}

.mmhc-reveal.mmhc-active .mmhc-visual,
.mmhc-reveal.mmhc-active .mmhc-info {
  transform: translateX(0) scale(1);
}

.mmhc-cta {
  width: min(760px, calc(100% - 40px));
  margin: 40px auto 0;
  padding: 65px 40px;
  text-align: center;
  border-radius: 30px;
  background: linear-gradient(145deg, #c7dcf8, #e5eaf0);
  box-shadow:
    14px 14px 30px rgba(137, 157, 184, 0.35),
    -14px -14px 30px rgba(255, 255, 255, 0.95);
}

.mmhc-cta > span {
  color: #012e73;
  font-family: "MiyaFont-2", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
}

.mmhc-cta h3 {
  margin: 20px 0;
  color: #012e73;
  font-family: "MiyaFont-1", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.48px;
}

.mmhc-cta h3 em {
  color: #1b4d87;

  font-style: normal;
}

.mmhc-cta p {
  margin: 0;
  color: #52677f;
  font-family: "MiyaFont-3", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.mmhc-cta-btn {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 25px;

  padding: 14px 24px;

  color: #fff;

  background: #012e73;

  border-radius: 50px;

  font-family: "MiyaFont-2", Arial, sans-serif;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 1px;

  text-decoration: none;

  box-shadow:
    8px 8px 18px rgba(137, 157, 184, 0.4),
    -6px -6px 15px rgba(255, 255, 255, 0.8);

  transition: transform 0.3s ease;
}

.mmhc-cta-btn:hover {
  transform: translateY(-3px);
}

/* Tablet */

@media (max-width: 1024px) {
  .mmhc-section {
    padding: 70px 0;
  }

  .mmhc-item {
    width: calc(100% - 50px);

    gap: 40px;

    min-height: 500px;

    margin-bottom: 90px;
  }

  .mmhc-visual {
    height: 450px;
  }

  .mmhc-info {
    min-height: 380px;

    padding: 35px;
  }

  .mmhc-index {
    font-size: 120px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .mmhc-section {
    padding: 40px 0;
  }

  .mmhc-intro {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .mmhc-intro h2 {
    font-size: 30px;
    line-height: 34px;
    letter-spacing: -0.48px;
  }

  .mmhc-intro > p {
    font-size: 14px;
    line-height: 20px;
  }

  /* STACK ITEMS */

  .mmhc-item {
    width: calc(100% - 40px);

    display: flex;

    flex-direction: column;

    gap: 25px;

    min-height: auto;

    margin-bottom: 70px;
  }

  /* IMAGE */

  .mmhc-visual {
    order: 1;
    height: 350px;
    padding: 12px;
    border-radius: 25px;
  }

  .mmhc-visual img {
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-radius: 18px;
    transform: translate3d(0, 0, 0) scale(1.08);
  }

  /* CONTENT */

  .mmhc-info {
    order: 2;
    width: 100%;
    min-height: auto;
    padding: 35px 28px;
    border-radius: 25px;
  }

  .mmhc-info h3 {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.48px;
  }

  .mmhc-info h4 {
    font-size: 16px;
    line-height: 20px;
  }

  .mmhc-info-inner > p {
    font-size: 14px;
    line-height: 20px;
  }

  .mmhc-index {
    top: 10px;
    right: 18px;
    font-size: 90px;
  }

  /* MOBILE REVEAL */

  .mmhc-item-left.mmhc-reveal .mmhc-visual,
  .mmhc-item-right.mmhc-reveal .mmhc-visual {
    transform: translateY(45px) scale(0.96);
  }

  .mmhc-item-left.mmhc-reveal .mmhc-info,
  .mmhc-item-right.mmhc-reveal .mmhc-info {
    transform: translateY(45px);
  }

  .mmhc-reveal.mmhc-active .mmhc-visual,
  .mmhc-reveal.mmhc-active .mmhc-info {
    transform: translateY(0) scale(1);
  }

  /* CTA */

  .mmhc-cta {
    width: calc(100% - 40px);
    padding: 50px 25px;
    border-radius: 25px;
  }

  .mmhc-cta h3 {
    font-size: 30px;
    line-height: 34px;
  }
}

/* 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 {
  left: 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 {
    left: 18px;
  }
}
