.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(200, 0, 0, 0.3);

    background: rgba(220, 0, 0, 0.08);
    color: #b00000;
}

.lang-btn:hover {
    background: rgba(220, 0, 0, 0.18);
}

.lang-btn.active {
    background: #dc0023;
    color: #fff;
    border-color: #dc0023;
}

.navbar-nav {
    margin-right: 60px;
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.stroke-text {
    margin: 0;
    padding: 0;
    color: #ffffff66;
    font-family: sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 7em;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    position: absolute;
    top: -140px;
}

@media (max-width: 768px) {
  .stroke-text {
    font-size: 3em;
    letter-spacing: 1px;
    -webkit-text-stroke-width: 0.8px;
        position: absolute;
    top: -61px;
  }
}

@media (max-width: 480px) {
  .stroke-text {
    font-size: 3em;
    letter-spacing: 1px;
    -webkit-text-stroke-width: 0.8px;
  }
}

#hero-bg.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 1.6s cubic-bezier(.22,.61,.36,1), opacity 1.6s ease;
}

#hero-bg.out {
  opacity: 0;
  transform: translate(-50%, -54%) scale(0.98);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  color: #fff;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.5;
}

#hero-text2,
#hero-title,
#hero-text,
#hero-cta,
#hero-text3{
  opacity: 0;
  transform: translateY(-28px);
  will-change: transform, opacity;
}

#hero-text2.visible,
#hero-text3.visible,
#hero-title.visible,
#hero-text.visible,
#hero-cta.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 1.6s cubic-bezier(.22,.61,.36,1),
    opacity   1.6s ease;
}

#hero-text2.visible { transition-delay: 0.10s; }
#hero-text3.visible { transition-delay: 0.20s; }
#hero-title.visible { transition-delay: 0.45s; }
#hero-text.visible  { transition-delay: 0.90s; }
#hero-cta.visible   { transition-delay: 1.35s; }

#hero-text2.out,
#hero-text3.out,
#hero-title.out,
#hero-text.out,
#hero-cta.out {
  opacity: 0;
  transform: translateY(14px);
  transition:
    transform 0.32s ease,
    opacity   0.32s ease;
  transition-delay: 0s;
}

@media (max-width: 992px) {
  .hero-section {
    height: 520px;
    max-height: 520px;
  }

  .hero-content h1 {
        font-size: 35px!important;
        line-height: 62px;
  }

  .hero-content p {
    font-size: 17px;
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-section {
    height: 650px;
    max-height: 650px;
  }
}

@supports (height: 100dvh) {
  .hero-section {
    height: 100dvh;
  }
}

.main-nav {
    border-bottom: 1px solid #d9d9d9;
    padding: 15px 0;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #444;
    font-weight: 600;
    text-decoration: none;
}

.main-nav a:hover {
    color: #000;
}

.main-header .navbar {
    border-bottom: 1px solid #ececec;
}

.main-header .navbar-nav {
    display: flex;
    gap: 0;
}

.main-header .navbar-nav .nav-link {
    display: block;
    padding: 18px 32px;
    color: #0c1a4b;
    font-weight: 600;
    text-decoration: none;
    border-right: 1px solid #ececec;
}

.main-header .navbar-nav .nav-item:first-child .nav-link {
    border-left: 1px solid #ececec;
}

.main-header .navbar-nav .nav-item:last-child .nav-link {

}

.main-header .navbar-nav .nav-link:hover {
    color: #000000;
}

.main-header.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #ffffff;
}

body {
    padding-top: 110px;
}

.top-bar {
    background: #f8f9fb;
    border-bottom: 1px solid #e7e7e7;
    padding: 6px 0;
    font-size: 14px;
}

.top-bar a {
    color: #0c1a4b;
    text-decoration: none;
    font-weight: 500;
}

.top-bar a:hover {
    color: #000000;
}

.top-item {
    gap: 6px;
    white-space: nowrap;
}

.top-icon {
    font-size: 15px;
    color: #0c1a4b;
    margin-right: 4px;
}

.main-header .navbar {
    border-bottom: 1px solid #ececec;
}

.main-header .navbar-nav {
    display: flex;
    gap: 0;
}

.main-header .navbar-nav .nav-link {
    display: block;
    padding: 18px 32px;
    color: #2c2c2c;
    font-weight: 500;
    text-decoration: none;
    border-right: 1px solid #ececec;
}

.main-header .navbar-nav .nav-item:first-child .nav-link {
    border-left: 1px solid #ececec;
}

.main-header .navbar-nav .nav-link:hover {
    color: #000000;
}

.lang-switch {
    display: flex;
    align-items: center;
    margin-left: 24px;
    gap: 8px;
}

.lang-btn {
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    color: #0c1a4b;
    padding: 6px 19px;
}

.lang-btn.active {
    border-radius: 317px;
}

.top-bar {
    background: #f8f9fb;
    border-bottom: 1px solid #e7e7e7;
    padding: 6px 0;
    font-size: 14px;
}

.top-bar a {
    color: #0c1a4b;
    text-decoration: none;
    font-weight: 500;
}

.top-item {
    gap: 6px;
    white-space: nowrap;
}

.top-icon {
    font-size: 20px;
    color: #dc0023;
    margin-right: 6px;
}

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    body {
        padding-top: 70px !important;
    }
}

.segments-section {
    padding: 100px 0;
    background: #ffffff;
}

.segments-title {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.segment-card {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all .3s ease;
    border: 1px solid #e6e6e6;
}

.segment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.segment-short {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #df0024;
}

.segment-text {
    font-size: 17px;
    color: #444;
    margin-bottom: 25px;
}

.segment-btn {
    display: inline-block;
    padding: 10px 24px;
      background: #df0024;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all .3s ease;
}

.segment-btn:hover {
background-color: rgb(145, 9, 32);
}

@media (max-width: 992px) {
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .segments-grid {
        grid-template-columns: 1fr;
    }

    .segment-card {
        padding: 30px 25px;
    }
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e3e3e6;
  padding: 60px 0 30px;
  color: #111111;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

.site-footer .footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  padding-bottom: 25px;
  border-bottom: 1px solid #e3e3e6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.footer-text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  max-width: 420px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  background: #c01b28;
  transform: translateY(-1px);
}

.footer-heading {
  margin: 4px 0 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
}

.footer-links {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.footer-links li + li {
  margin-top: 6px;
}

.footer-links a {
  font-size: 15px;
  color: #666666;
  text-decoration: none;
  position: relative;
  padding-left: 10px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #c01b28;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.footer-links a:hover {
  color: #c01b28;
  transform: translateX(2px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.footer-lang--headerstyle {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-lang-btn {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  background: #ffffff;
  font-size: 14px;
  cursor: pointer;
  color: #555555;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-lang-btn--active {
  background: #c01b28;
  color: #ffffff;
  border-color: #c01b28;
}

.footer-lang-btn:hover:not(.footer-lang-btn--active) {
  background: #f3f3f3;
  color: #111111;
}

.footer-contact-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-contact-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 2px;
}

.footer-contact-value {
  font-size: 15px;
  color: #111111;
  text-decoration: none;
  line-height: 1.5;
}

.footer-contact-value:hover,
.footer-contact-value a:hover {
  text-decoration: underline;
}

.footer-company {
  font-size: 13px;
  color: #777777;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.footer-bottom {
  padding-top: 22px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #777777;
}

.footer-copy {
  margin: 0;
}

.footer-madeby {
  margin: 0;
}

.footer-madeby a {
  color: #c01b28;
  text-decoration: none;
}

.footer-madeby a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1.5fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-main,
  .footer-col,
  .footer-bottom-inner {
    text-align: center;
  }

  .footer-text {
    max-width: 100%;
    margin-inline: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-lang--headerstyle {
    justify-content: center;
  }

  .footer-company {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
  }
}

.footer-links a {
  font-size: 15px;
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
  padding-left: 0;
}

.footer-links a::before {
  display: none !important;
  content: none !important;
}

.footer-links a:hover {
  color: #c01b28 !important;
  transform: none;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
width: 49px;
    height: 49px;
  border-radius: 50%;
  background: #c01b28;
  color: #fff;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  background: #6d0f17;
  transform: translateY(-1px);
}

.footer-size {
    font-size: 20px;
}

.navbar-toggler .navbar-toggler-icon {
  display: none;
}

.custom-hamburger {
  width: 70px;
  height: 45px;
  padding: 9px 10px;
  border: none;
  background: #c01b28;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 0px;
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;

  clip-path: polygon(
    10% 0%,
    100% 0%,
    100% 90%,
    90% 100%,
    0% 100%,
    0% 10%
  );
}

.custom-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.custom-hamburger:hover {
  background: #a91420;
  transform: translateY(-1px);
}

.custom-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.custom-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.custom-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.segment-page {
  padding: 80px 0 60px;
}

.segment-page .container {
  max-width: 1200px;
}

.segment-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f6f6f7;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c01b28;
  margin-bottom: 16px;
}

.segment-badge-code {
  font-weight: 700;
}

.segment-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.segment-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 560px;
  margin-bottom: 28px;
}

.segment-divider {
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: #c01b28;
  margin-bottom: 30px;
}

.segment-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.segment-text {
  flex: 1 1 320px;
}

.segment-image-wrap {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
}

.segment-image-inner {
  max-width: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  position: relative;
}

.segment-image-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.segment-image-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 12px;
}

.segment-block-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.segment-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 14px;
}

.segment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.segment-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}

.segment-list-icon {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: #c01b28;
}

.segment-secondary {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #eee;
}

.segment-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.segment-pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #eee;
  font-size: 13px;
  color: #555;
}

@media (max-width: 992px) {
  .segment-layout {
    flex-direction: column;
  }

  .segment-image-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .segment-page {
    padding: 60px 0 40px;
  }

  .segment-title {
    font-size: 26px;
  }

  .segment-subtitle {
    font-size: 15px;
  }
}

.segment-image-inner {
  position: relative;
  display: block;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.segment-image-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.segment-image-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 14px;
  white-space: nowrap;
}

.about-section {
  padding: 80px 0 70px;
  background: #fafafa;
}

.about-section .container {
  max-width: 1200px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3f3f5;
  margin-bottom: 18px;
}

.about-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c01b28;
}

.about-badge-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c01b28;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 640px;
  margin-bottom: 30px;
}

.about-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.about-text {
  flex: 1 1 360px;
}

.about-image-wrap {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.about-block-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 14px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 22px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}

.about-list-dot {
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: #c01b28;
}

.about-secondary {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e5e5e8;
}

.about-image-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  max-width: 460px;
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-image-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-stat {
  padding: 10px 14px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  min-width: 110px;
}

.about-stat-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

.about-stat-label {
  display: block;
  font-size: 12px;
  color: #777;
}

@media (max-width: 992px) {
  .about-layout {
    flex-direction: column;
  }

  .about-image-wrap {
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 0 50px;
  }

  .about-title {
    font-size: 26px;
  }

  .about-subtitle {
    font-size: 15px;
  }

  .about-image-card {
    max-width: 100%;
  }

  .about-stats {
    gap: 10px;
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.page-loader-logo {
  height: 42px;
  width: auto;
  display: block;
}

.page-loader-spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #e0e0e0;
  border-top-color: #c01b28;
  animation: pageLoaderSpin 0.9s linear infinite;
}

@keyframes pageLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.contact-section {
  padding: 80px 0 60px;
}

.contact-section .container {
  max-width: 1100px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3f3f5;
  margin-bottom: 18px;
}

.contact-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c01b28;
}

.contact-badge-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c01b28;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 620px;
  margin-bottom: 30px;
}

.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-col {
  flex: 1 1 320px;
}

.contact-block {
  padding: 18px 22px;
  border-radius: 18px;
  background: #fafafa;
  border: 1px solid #eeeeee;
}

.contact-block + .contact-block {
  margin-top: 16px;
}

.contact-block-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 12px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.contact-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 15px;
  color: #111;
  text-decoration: none;
  line-height: 1.5;
}

.contact-value:hover {
  text-decoration: underline;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #ececec;
  font-size: 13px;
  color: #555;
  background: #ffffff;
}

.contact-hours {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #444;
}

.contact-note {
  margin-top: 16px;
  font-size: 14px;
  color: #555;
}

.contact-map-section {
  margin-top: 20px;
}

.contact-map-wrapper {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0 40px;
  }

  .contact-title {
    font-size: 26px;
  }

  .contact-subtitle {
    font-size: 15px;
  }

  .contact-block {
    padding: 16px 18px;
  }

  .contact-layout {
    flex-direction: column;
  }
}

.footer-heart {
  color: #e63946;
  font-weight: 600;
}

.footer-heart {
  color: #e63946;
  font-size: 16px;
  margin: 0 4px;
  animation: heartPulse 1.4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); }
  60% { transform: scale(1); }
  80% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

sup {
  font-size: 25px;
    vertical-align: super;
}

.hero .animate,
.hero [id^="hero-"] {
  animation: none !important;
  transition: none !important;
}

#hero-text2,
#hero-text3,
#hero-title,
#hero-text,
#hero-cta {
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
}

.hero #hero-text2.visible,
.hero #hero-text3.visible,
.hero #hero-title.visible,
.hero #hero-text.visible,
.hero #hero-cta.visible {
  animation-name: heroBottomUpIn !important;
  animation-duration: 1.15s !important;
  animation-timing-function: cubic-bezier(.2,.85,.2,1) !important;
  animation-fill-mode: both !important;
}

.hero #hero-text2.visible { animation-delay: 0.20s !important; }
.hero #hero-text3.visible { animation-delay: 0.20s !important; }
.hero #hero-title.visible { animation-delay: 0.85s !important; }
.hero #hero-text.visible  { animation-delay: 1.55s !important; }
.hero #hero-cta.visible   { animation-delay: 2.25s !important; }

@keyframes heroBottomUpIn {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

#hero-text2.out,
#hero-title.out,
#hero-text.out,
#hero-cta.out {
  opacity: 0;
  transform: translateY(-14px);
  transition:
    transform 0.32s ease,
    opacity   0.32s ease;
  transition-delay: 0s;
}

.hero-section{
  position: relative;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
}
