* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
.section-title,
.hero-title {
  font-family: "Oswald", sans-serif;
}

img {
  user-select: none;
}

header {
  position: relative;
  min-height: 100svh;
  background-image: url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;

  contact-details-bar {
    width: 100%;
    min-height: 44px;
    padding: 8px 24px;
    background-color: #0b0c0f;
    border-bottom: 1px solid #282829;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 4;

    p {
      color: #c9c9c9;
      font-size: 0.9rem;
      line-height: 1.3;

      span {
        user-select: none;
      }
    }

    a {
      color: #c9c9c9;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    a:hover {
      color: #e30613;
    }
  }

  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to bottom, #0b0c0f, transparent);
    z-index: 1;
    pointer-events: none;
  }

  nav {
    width: 100%;
    min-height: 76px;
    padding: 0 24px;
    background-color: #151617;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 4;

    img {
      cursor: pointer;
      width: clamp(58px, 5vw, 70px);
      flex-shrink: 0;
    }

    ul {
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(8px, 1.4vw, 20px);
      flex-wrap: wrap;

      li {
        list-style-type: none;

        a {
          text-decoration: none;
          text-transform: uppercase;
          font-weight: 600;
        }
      }
    }

    .nav-link {
      position: relative;
      display: inline-block;
      padding: 12px 18px;
      color: #f5f5f5;
      text-decoration: none;
      font-weight: 600;
      font-size: clamp(0.8rem, 1vw, 1rem);
      white-space: nowrap;
    }

    .nav-link:hover {
      color: #ffffff;
    }

    .nav-link .line {
      position: absolute;
      background: #d71920;
      pointer-events: none;
    }

    .nav-link .line-top {
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.18s linear;
    }

    .nav-link .line-right {
      top: 0;
      right: 0;
      width: 2px;
      height: 100%;
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.18s linear 0.18s;
    }

    .nav-link .line-bottom {
      bottom: 0;
      right: 0;
      width: 100%;
      height: 2px;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.18s linear 0.36s;
    }

    .nav-link .line-left {
      bottom: 0;
      left: 0;
      width: 2px;
      height: 100%;
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.18s linear 0.54s;
    }

    .nav-link:hover .line-top {
      transform: scaleX(1);
    }

    .nav-link:hover .line-right {
      transform: scaleY(1);
    }

    .nav-link:hover .line-bottom {
      transform: scaleX(1);
    }

    .nav-link:hover .line-left {
      transform: scaleY(1);
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 5px;
      height: 3px;
      background: #e30613;
      border-radius: 999px;
    }

    .nav-link.active:hover .line {
      transform: scale(0);
    }
  }

  .hero-content-box {
    min-height: calc(100svh - 120px);
    padding: clamp(80px, 10vw, 150px) 24px clamp(80px, 10vw, 140px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: clamp(18px, 2vw, 30px);
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .hero-content-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    pointer-events: none;
  }

  .hero-content-box h1 {
    max-width: 1100px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  }

  .hero-content-box p {
    max-width: 720px;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    margin: 0;
  }

  .hero-content-box h1,
  .hero-content-box p {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 1200px) {
  header {
    background-position: center;

    contact-details-bar {
      gap: 14px;
      padding: 8px 18px;

      p {
        font-size: 0.84rem;
      }
    }

    nav {
      min-height: 72px;

      .nav-link {
        padding: 11px 15px;
      }
    }

    .hero-content-box {
      min-height: calc(100svh - 116px);
    }
  }
}

@media (max-width: 900px) {
  header {
    contact-details-bar {
      justify-content: center;
      gap: 10px 16px;

      p {
        font-size: 0.8rem;
      }
    }

    nav {
      min-height: auto;
      padding: 12px 18px;
      flex-direction: column;
      gap: 10px;

      img {
        width: 62px;
      }

      ul {
        gap: 8px;
      }

      .nav-link {
        padding: 10px 14px;
        font-size: 0.82rem;
      }
    }

    .hero-content-box {
      min-height: calc(100svh - 170px);
      padding: 70px 20px 80px;
    }
  }
}

@media (max-width: 600px) {
  header {
    min-height: 100svh;
    background-position: center;

    contact-details-bar {
      min-height: auto;
      padding: 10px 14px;
      flex-direction: column;
      align-items: center;
      gap: 6px;

      p {
        font-size: 0.78rem;
        text-align: center;
      }
    }

    nav {
      padding: 12px 14px;

      img {
        width: 58px;
      }

      ul {
        width: 100%;
        gap: 6px;
      }

      .nav-link {
        padding: 9px 10px;
        font-size: 0.76rem;
      }

      .nav-link.active::after {
        left: 10px;
        right: 10px;
        bottom: 3px;
      }
    }

    .hero-content-box {
      min-height: calc(100svh - 240px);
      padding: 56px 16px 70px;
      gap: 18px;
    }

    .hero-content-box h1 {
      font-size: clamp(2rem, 11vw, 3rem);
      max-width: 100%;
    }

    .hero-content-box p {
      font-size: 1rem;
      max-width: 95%;
    }
  }
}

@media (max-width: 380px) {
  header {
    nav {
      .nav-link {
        padding: 8px 8px;
        font-size: 0.7rem;
      }
    }

    .hero-content-box h1 {
      font-size: 1.85rem;
    }

    .hero-content-box p {
      font-size: 0.94rem;
    }
  }
}
main {
  .main-content-box {
    min-height: 100svh;
    height: auto;
  }

  .featured-services {
    min-height: 100svh;
    height: auto;
    padding: clamp(60px, 6vw, 110px) clamp(24px, 5vw, 80px);
    background-color: black;
    box-shadow: 4px 4px 20px black;
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(520px, 1.15fr);
    grid-template-areas: "info car";
    align-items: center;
    gap: clamp(36px, 5vw, 90px);

    .side-info-boxes {
      grid-area: info;
      width: 100%;
      max-width: 760px;
      justify-self: end;

      display: grid;
      grid-template-columns: 1fr 1.25fr;
      gap: 16px;
      align-items: stretch;
      z-index: 2;

      .side-box {
        border: 1px solid #282829;
        background-color: #161617;
        border-radius: 10px;
      }

      > .info-list {
        color: white;
        padding: 10px;

        .list-box {
          user-select: none;
          width: 100%;
          min-height: 82px;
          margin-bottom: 10px;
          border-radius: 5px;
          padding: 0 44px 0 14px;

          display: flex;
          align-items: center;
          gap: 16px;

          cursor: pointer;
          position: relative;

          svg {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
          }

          img {
            width: 34px;
            flex-shrink: 0;
          }

          p {
            color: white;
            font-weight: 700;
            line-height: 1.15;
            font-size: 0.95rem;
          }

          .arrow {
            color: white;
          }

          &.active {
            color: #d71920;
            background-color: #141516;
            border: 1px solid #282829;
            border-left: 4px solid red;

            p {
              color: red;
            }

            .arrow {
              color: #d71920;
            }
          }
        }
      }

      .info-content {
        padding: clamp(22px, 2vw, 32px);
        display: flex;
        flex-direction: column;
        justify-content: center;

        h2 {
          color: white;
          font-size: clamp(2rem, 2.5vw, 3rem);
          margin: 0 0 24px 0;
        }

        > p {
          color: grey;
          margin: 0;
          text-align: justify;
          line-height: 1.65;
          font-size: 1rem;
        }

        .info-list {
          margin: 24px 0 0 0;

          .list-element {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;

            svg {
              flex-shrink: 0;
            }

            p {
              color: rgb(161, 161, 161);
              text-align: left;
              line-height: 1.35;
              margin: 0;
            }
          }
        }
      }
    }

    .img-map-container {
      grid-area: car;
      position: relative;
      width: min(820px, 100%);
      justify-self: start;
      z-index: 1;

      .car-pic {
        width: 100%;
        display: block;
        transition: 0.2s ease-in-out;
      }

      .car-pic:hover {
        transform: scale(1.01);
      }

      .point {
        position: absolute;
        width: clamp(36px, 2.8vw, 52px);
        height: clamp(36px, 2.8vw, 52px);
        border: 1px solid white;
        background-color: #141516;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;

        img {
          width: 80%;
        }

        &.active {
          border: 2px solid red;
        }
      }

      .point:nth-of-type(1) {
        top: 47%;
        left: 15%;
      }

      .point:nth-of-type(2) {
        bottom: 15%;
        left: 38%;
      }

      .point:nth-of-type(3) {
        bottom: 45%;
        right: 16%;
      }

      .point:nth-of-type(4) {
        bottom: 33%;
        left: 36%;
      }

      .point:nth-of-type(5) {
        top: 33%;
        left: 40%;
      }

      .point:nth-of-type(6) {
        top: 50%;
        left: 28%;
      }
    }
  }

  @media (max-width: 1300px) {
    .featured-services {
      grid-template-columns: minmax(480px, 1fr) minmax(420px, 1fr);
      gap: 36px;
      padding: 70px 42px;

      .side-info-boxes {
        max-width: 700px;
        justify-self: end;
      }

      .img-map-container {
        width: min(680px, 100%);
        justify-self: start;
      }
    }
  }

  @media (max-width: 1100px) {
    .featured-services {
      min-height: auto;
      grid-template-columns: 1fr;
      grid-template-areas:
        "car"
        "info";
      gap: 32px;
      padding: 60px 32px;

      .img-map-container {
        width: min(680px, 100%);
        justify-self: center;
      }

      .side-info-boxes {
        width: 100%;
        max-width: 760px;
        justify-self: center;
        grid-template-columns: 1fr 1fr;
        gap: 16px;

        > .info-list {
          .list-box {
            min-height: 70px;

            img {
              width: 30px;
            }

            p {
              font-size: 0.9rem;
            }
          }
        }

        .info-content {
          padding: 22px;

          h2 {
            font-size: 2rem;
          }

          > p {
            font-size: 0.95rem;
            line-height: 1.55;
          }
        }
      }
    }
  }

  @media (max-width: 600px) {
    .featured-services {
      padding: 56px 18px;

      .img-map-container {
        display: none;
      }

      .side-info-boxes {
        grid-template-columns: 1fr;
        gap: 18px;

        > .info-list {
          padding: 10px;

          .list-box {
            min-height: 66px;
            margin-bottom: 8px;
            padding: 0 40px 0 12px;

            img {
              width: 30px;
            }

            p {
              font-size: 0.92rem;
            }
          }
        }

        .info-content {
          padding: 22px;

          h2 {
            font-size: 2rem;
          }

          > p {
            text-align: left;
          }

          .info-list {
            margin-top: 22px;

            .list-element {
              margin-bottom: 16px;
            }
          }
        }
      }
    }
  }
}

main .why-choose-section {
  min-height: 100vh;
  height: auto;
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #08090b 0%, #0b0c0f 50%, #050505 100%);
  position: relative;
  overflow: hidden;
}

main .why-choose-section > h3 {
  padding-top: 0;
  margin-bottom: 12px;
  color: #e30613;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1rem;
}

main .why-choose-section > h2 {
  max-width: 980px;
  margin: 0 auto 18px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1.3;
}

main .why-choose-section > p {
  max-width: 760px;
  margin: 0 auto 46px;
  color: #aeb4bd;
  text-align: center;
  line-height: 1.7;
  font-size: 1.02rem;
}

main .why-choose-section .benefits-box {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: min(1460px, 94%);
  min-height: auto;
  height: auto;
  margin: 0 auto;
  padding: clamp(22px, 2.4vw, 36px);
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.01)
    ),
    rgba(0, 0, 0, 0.72);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

main .why-choose-section .description-box {
  position: relative;
  width: 100%;
  min-height: 640px;
  padding: clamp(30px, 3vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: 18px;
  overflow: hidden;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.84) 42%,
      rgba(0, 0, 0, 0.58) 72%,
      rgba(0, 0, 0, 0.38) 100%
    ),
    url("../assets/description-box-bg.png");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.65);
}

main .why-choose-section .description-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(227, 6, 19, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

main .why-choose-section .description-box h3,
main .why-choose-section .description-box h2,
main .why-choose-section .description-box p,
main .why-choose-section .description-box .description-box-info-container,
main .why-choose-section .description-box .navigate-to-services {
  position: relative;
  z-index: 1;
}

main .why-choose-section .description-box h3 {
  padding: 0;
  margin: 0 0 14px;
  color: #ff1725;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

main .why-choose-section .description-box h2 {
  margin: 0 0 22px;
  max-width: 520px;
  color: #ffffff;
  text-align: left;
  text-transform: uppercase;
  font-size: clamp(2rem, 2.7vw, 3.2rem);
  line-height: 1.3;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9);
}

main .why-choose-section .description-box > p {
  display: block;
  width: min(100%, 560px);
  margin: 0 0 28px;
  color: #f0f0f0;
  text-align: left;
  font-size: 1rem;
  line-height: 1.85;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.95);
}

main .why-choose-section .description-box-info-container {
  margin: 30px 0 34px;
  display: grid;
  gap: 14px;
}

main .why-choose-section .description-box-info-container .info-list {
  margin: 0;
}

main .why-choose-section .description-box-info-container .list-element {
  margin: 0;
  min-height: 54px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(4px);
}

main .why-choose-section .description-box-info-container .list-element svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  filter: drop-shadow(0 0 10px rgba(227, 6, 19, 0.4));
}

main .why-choose-section .description-box-info-container .list-element p {
  width: auto;
  margin: 0;
  color: #ffffff;
  text-align: left;
  font-size: 0.94rem;
  line-height: 1.45;
}

main .why-choose-section .description-box .navigate-to-services {
  width: 230px;
  height: 52px;
  margin: 0;
  border: 1px solid #e30613;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.42);
  color: #e30613;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

main .why-choose-section .description-box .navigate-to-services p {
  margin: 0;
  padding: 0;
  color: inherit;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

main .why-choose-section .description-box .navigate-to-services:hover {
  transform: translateY(-3px);
  background: #e30613;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(227, 6, 19, 0.22);
}

main .why-choose-section .benefits-cards-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

main .why-choose-section .benefit-card {
  position: relative;
  width: 100%;
  min-height: 305px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.075), transparent 44%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    ),
    #151617;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

main .why-choose-section .benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.2), transparent 38%),
    radial-gradient(
      circle at bottom right,
      rgba(227, 6, 19, 0.11),
      transparent 38%
    );
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

main .why-choose-section .benefit-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-top: 1px solid rgba(227, 6, 19, 0.5);
  border-right: 1px solid rgba(227, 6, 19, 0.5);
  border-radius: 0 12px 0 0;
  opacity: 0.65;
  pointer-events: none;
}

main .why-choose-section .benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 6, 19, 0.85);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(227, 6, 19, 0.13);
}

main .why-choose-section .benefit-card:hover::before {
  opacity: 1;
}

main .why-choose-section .benefit-card svg {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  margin: 0 0 16px;
  padding: 6px;
  border-radius: 50%;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.08));
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}

main .why-choose-section .benefit-card:hover svg {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px rgba(227, 6, 19, 0.26));
}

main .why-choose-section .benefit-card h4 {
  position: relative;
  z-index: 1;
  min-height: 58px;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  font-size: clamp(1.35rem, 1.5vw, 1.72rem);
  line-height: 1.08;
  text-transform: none;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

main .why-choose-section .benefit-card .red-line {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 4px;
  margin: 0 auto 18px;
  border: none;
  border-radius: 999px;
  background: #e30613;
  box-shadow: 0 0 16px rgba(227, 6, 19, 0.32);
}

main .why-choose-section .benefit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #b8bec7;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.58;
}

@media (max-width: 1250px) {
  main .why-choose-section .benefits-box {
    grid-template-columns: 1fr;
  }

  main .why-choose-section .description-box {
    min-height: 520px;
  }

  main .why-choose-section .benefits-cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 950px) {
  main .why-choose-section {
    padding: 60px 0 70px;
  }

  main .why-choose-section .benefits-box {
    width: 92%;
    padding: 20px;
  }

  main .why-choose-section .benefits-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  main .why-choose-section .description-box {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  main .why-choose-section > p br {
    display: none;
  }

  main .why-choose-section .benefits-box {
    width: 94%;
    padding: 14px;
    border-radius: 18px;
  }

  main .why-choose-section .description-box {
    padding: 28px 22px;
    border-radius: 16px;
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.84) 100%),
      url("../assets/description-box-bg.png");
  }

  main .why-choose-section .description-box h2 {
    font-size: 2rem;
  }

  main .why-choose-section .description-box > p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  main .why-choose-section .description-box .navigate-to-services {
    width: 100%;
  }

  main .why-choose-section .benefits-cards-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  main .why-choose-section .benefit-card {
    min-height: auto;
    padding: 28px 22px;
  }

  main .why-choose-section .benefit-card h4 {
    min-height: auto;
  }
}
main {
  .gyik-section {
    height: auto;
    min-height: 100svh;
    background: linear-gradient(180deg, #050505 0%, #000000 100%);
    padding: clamp(70px, 8vw, 120px) clamp(18px, 5vw, 80px);
    overflow: hidden;

    .gyik-box {
      width: min(1500px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(340px, 0.85fr) minmax(520px, 1.15fr);
      gap: clamp(36px, 5vw, 90px);
      align-items: start;
    }

    .description-box {
      width: 100%;

      h3 {
        margin: 0 0 14px 0;
        color: #d71920;
        text-transform: uppercase;
      }

      h2 {
        font-size: clamp(2rem, 3vw, 3.4rem);
        line-height: 1.3;
        margin: 0 0 22px 0;
        color: white;
        text-transform: uppercase;
      }

      .red-line {
        width: 110px;
        height: 4px;
        background-color: #d71920;
        border: none;
        margin: 0 0 28px 0;
      }

      p {
        max-width: 620px;
        margin: 0 0 18px 0;
        color: #9fa3a8;
        line-height: 1.75;
        font-size: 1rem;
      }

      img {
        width: min(620px, 100%);
        max-height: 340px;
        object-fit: cover;
        object-position: center;
        margin-top: 30px;
        border-radius: 0 0 0 34px;
        display: block;
        opacity: 0.9;
      }
    }

    .question-box {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      padding-top: 0;
      position: relative;
    }

    .question {
      width: 100%;
      min-height: 68px;
      height: auto;
      padding: 0 18px;
      background:
        linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.045),
          rgba(255, 255, 255, 0.015)
        ),
        #121313;
      border: 1px solid #333436;
      border-radius: 14px;
      transition: 0.25s ease-in-out;
      cursor: pointer;
      overflow: hidden;

      .title-box {
        display: flex;
        gap: 12px;
        align-items: center;
        min-height: 68px;

        h4 {
          color: white;
          margin: 0;
          line-height: 1.25;
          font-size: clamp(0.95rem, 1.05vw, 1.08rem);
        }

        svg {
          flex-shrink: 0;
        }

        svg:last-of-type {
          margin-left: auto;
        }
      }

      p {
        display: none;
        color: #9fa3a8;
        text-align: left;
        margin: 0 0 22px 44px;
        line-height: 1.6;
        max-width: 92%;
      }

      .vertical-line {
        opacity: 1;
        transition:
          opacity 0.2s ease,
          transform 0.2s ease;
        transform-origin: center;
      }

      &.active {
        min-height: 155px;
        border-color: rgba(227, 6, 19, 0.6);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);

        p {
          display: block;
        }

        .vertical-line {
          opacity: 0;
          transform: scaleY(0);
        }
      }
    }

    .contact-box {
      width: 100%;
      min-height: 120px;
      margin-top: 22px;
      padding: 18px 20px;
      background:
        linear-gradient(90deg, rgba(227, 6, 19, 0.1), transparent 45%), #050505;
      border: 1px solid #3f4042;
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 18px;

      > svg {
        flex-shrink: 0;
        width: clamp(58px, 5vw, 80px);
        height: clamp(58px, 5vw, 80px);
      }

      .text-container {
        display: flex;
        flex-direction: column;
        gap: 8px;

        h4 {
          color: white;
          margin: 0;
          font-size: clamp(1rem, 1.2vw, 1.25rem);
        }

        p {
          color: #8f9398;
          margin: 0;
          line-height: 1.4;
        }
      }

      .navigate-to-contact-page {
        width: 250px;
        min-height: 62px;
        margin-left: auto;
        padding: 0 14px 0 22px;
        border: 2px solid #e30613;
        border-radius: 8px;
        background-color: transparent;
        cursor: pointer;
        transition: 0.2s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;

        p {
          color: #d71920;
          text-transform: uppercase;
          font-weight: 800;
          font-size: 0.8rem;
          margin: 0;
          line-height: 1.2;
        }

        svg {
          margin-left: auto;
          flex-shrink: 0;
        }

        &:hover {
          transform: scale(1.04);
          background-color: rgba(227, 6, 19, 0.08);
        }
      }
    }
  }
}

@media (max-width: 1200px) {
  main {
    .gyik-section {
      .gyik-box {
        grid-template-columns: 1fr;
        max-width: 900px;
      }

      .description-box {
        img {
          width: 100%;
          max-height: 320px;
        }
      }
    }
  }
}

@media (max-width: 768px) {
  main {
    .gyik-section {
      padding: 60px 24px;

      .description-box {
        h2 {
          font-size: 2.1rem;
        }

        img {
          max-height: 260px;
        }
      }

      .question {
        padding: 0 14px;

        .title-box {
          gap: 10px;

          h4 {
            font-size: 0.95rem;
          }
        }

        p {
          margin-left: 42px;
          max-width: calc(100% - 42px);
        }
      }

      .contact-box {
        flex-wrap: wrap;

        .navigate-to-contact-page {
          width: 100%;
          margin-left: 0;
        }
      }
    }
  }
}

@media (max-width: 600px) {
  main {
    .gyik-section {
      padding: 52px 16px;

      .gyik-box {
        gap: 32px;
      }

      .description-box {
        h2 {
          font-size: 1.75rem;
        }

        p {
          font-size: 0.95rem;
          line-height: 1.65;
        }

        img {
          display: none;
        }
      }

      .question {
        border-radius: 12px;

        .title-box {
          min-height: 66px;

          .faq-icon-left {
            display: none;
          }

          h4 {
            font-size: 0.92rem;
            line-height: 1.25;
          }

          .faq-icon-right {
            width: 28px;
            height: 28px;
          }
        }

        p {
          margin: 0 0 20px 0;
          max-width: 100%;
          font-size: 0.92rem;
        }

        &.active {
          min-height: auto;
        }
      }

      .contact-box {
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;

        > svg {
          width: 58px;
          height: 58px;
        }

        .navigate-to-contact-page {
          width: 100%;
          min-height: 58px;
          padding: 0 14px;

          p {
            width: 100%;
            text-align: center;
          }

          svg {
            display: none;
          }
        }
      }
    }
  }
}

@media (max-width: 380px) {
  main {
    .gyik-section {
      padding: 44px 14px;

      .question {
        .title-box {
          h4 {
            font-size: 0.86rem;
          }
        }
      }
    }
  }
}
.contact-section {
  height: auto;
  min-height: 100svh;
  background: #0b0c0f;
  padding: clamp(70px, 8vw, 120px) clamp(18px, 5vw, 80px);

  .contact-container {
    width: min(1500px, 100%);
    min-height: 760px;
    margin: 0 auto;
    background-color: #151617;
    border: 1px solid #282829;
    border-radius: 14px;
    display: grid;
    grid-template-columns: minmax(360px, 0.8fr) minmax(520px, 1.2fr);
    gap: clamp(24px, 3vw, 48px);
    overflow: hidden;

    .info-box {
      padding: clamp(28px, 4vw, 56px);

      h3 {
        text-transform: uppercase;
        margin: 0 0 12px 0;
        color: #d71920;
      }

      h2 {
        color: white;
        font-size: clamp(2rem, 3vw, 3.4rem);
        line-height: 1.08;
        margin: 0;
      }

      .red-line {
        width: 110px;
        height: 4px;
        background-color: #d71920;
        border: none;
        margin: 24px 0;
      }

      > p {
        color: rgb(150, 150, 150);
        line-height: 1.65;
        margin: 0;
      }

      .company-infos {
        margin: 36px 0;
        display: flex;
        flex-direction: column;
        gap: 18px;

        .info {
          display: flex;
          align-items: center;
          gap: 14px;
          padding: 12px;
          border-radius: 12px;
          transition: 0.2s ease-in-out;

          &:hover {
            background-color: rgba(255, 255, 255, 0.035);
          }

          svg {
            width: clamp(54px, 4vw, 72px);
            height: clamp(54px, 4vw, 72px);
            flex-shrink: 0;
          }

          .info-text-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            min-width: 0;

            h4 {
              color: white;
              margin: 0;
              font-size: 1rem;
            }

            p {
              color: rgb(150, 150, 150);
              margin: 0;
              line-height: 1.4;
              overflow-wrap: anywhere;
            }
          }
        }
      }
    }

    .navigate-to-contact-page {
      width: min(280px, 100%);
      min-height: 64px;
      padding: 0 16px 0 24px;
      border: 2px solid #e30613;
      border-radius: 8px;
      background-color: black;
      cursor: pointer;
      transition: 0.2s ease-in-out;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;

      p {
        color: #d71920;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 0.8rem;
        margin: 0;
      }

      svg {
        margin-left: auto;
        flex-shrink: 0;
      }

      &:hover {
        transform: scale(1.04);
        background-color: rgba(227, 6, 19, 0.08);
      }
    }

    .map-container {
      padding: clamp(20px, 3vw, 36px);

      iframe {
        width: 100%;
        height: 100%;
        min-height: 680px;
        border: 0;
        border-radius: 12px;
      }
    }
  }
}

@media (max-width: 1200px) {
  .contact-section {
    .contact-container {
      grid-template-columns: 1fr;
      min-height: auto;
      max-width: 920px;

      .map-container {
        padding-top: 0;

        iframe {
          min-height: 430px;
        }
      }
    }
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 24px;

    .contact-container {
      border-radius: 12px;

      .info-box {
        h2 {
          font-size: 2.1rem;
        }

        .company-infos {
          gap: 14px;

          .info {
            align-items: flex-start;
            padding: 10px 0;

            svg {
              margin-top: -6px;
            }
          }
        }
      }

      .map-container {
        iframe {
          min-height: 360px;
        }
      }
    }
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 52px 16px;

    .contact-container {
      .info-box {
        padding: 26px 18px;

        h2 {
          font-size: 1.75rem;
        }

        > p {
          font-size: 0.95rem;

          br {
            display: none;
          }
        }

        .company-infos {
          margin: 30px 0;

          .info {
            gap: 12px;

            svg {
              width: 48px;
              height: 48px;
            }

            .info-text-container {
              h4 {
                font-size: 0.95rem;
              }

              p {
                font-size: 0.9rem;
              }
            }
          }
        }
      }

      .navigate-to-contact-page {
        width: 100%;
        min-height: 58px;
        padding: 0 14px;

        p {
          width: 100%;
          text-align: center;
        }

        svg {
          display: none;
        }
      }

      .map-container {
        padding: 0 18px 18px 18px;

        iframe {
          min-height: 320px;
        }
      }
    }
  }
}

@media (max-width: 380px) {
  .contact-section {
    padding: 44px 14px;

    .contact-container {
      .info-box {
        padding: 22px 14px;

        h2 {
          font-size: 1.55rem;
        }

        .company-infos {
          .info {
            svg {
              width: 42px;
              height: 42px;
            }
          }
        }
      }

      .map-container {
        padding: 0 14px 14px 14px;

        iframe {
          min-height: 280px;
        }
      }
    }
  }
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.reveal-left {
  transform: translateX(-48px);
}

.reveal.reveal-right {
  transform: translateX(48px);
}

.reveal.reveal-scale {
  transform: scale(0.96);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  will-change: auto;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.reveal-left,
  .reveal.reveal-right,
  .reveal.reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.services-page {
  background: #050505;
  color: #ffffff;
  overflow-x: hidden;
}

.subpage-header {
  min-height: auto;
  background-image: none;
  background-color: #0b0c0f;
}

.subpage-header contact-details-bar {
  background-color: #0b0c0f;
  border-bottom: 1px solid #202124;
}

.subpage-header nav {
  background: #151617;
  border-bottom: 1px solid #282829;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.subpage-header nav .nav-link {
  color: #f5f5f5;
}

.subpage-header nav .nav-link:hover {
  color: #ffffff;
}

.services-section {
  min-height: 100vh;
  height: auto;
  padding: clamp(70px, 7vw, 110px) 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(227, 6, 19, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #050505 0%, #0b0c0f 45%, #050505 100%);
}

.services-inner {
  width: min(1440px, 88%);
  margin: 0 auto;
}

.services-title-box {
  text-align: center;
  max-width: 920px;
  margin: 0 auto clamp(44px, 5vw, 70px) auto;
}

.services-title-box h3 {
  color: #e30613;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(0.95rem, 1vw, 1.15rem);
  margin-bottom: 14px;
}

.services-title-box h1 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #ffffff;
}

.services-title-box .red-line {
  width: 130px;
  height: 4px;
  background-color: #e30613;
  margin: 0 auto 24px auto;
}

.services-title-box p {
  max-width: 760px;
  margin: 0 auto;
  color: #a8adb4;
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.7;
}

.services-card-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}

.service-card {
  position: relative;
  min-width: 0;
  min-height: 410px;
  padding: 34px 24px 28px 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.01)
    ),
    #151617;
  border: 1px solid #2a2b2d;
  border-radius: 14px;
  text-align: center;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(227, 6, 19, 0.14),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 6, 19, 0.75);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(227, 6, 19, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-number {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: "Oswald", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.055);
  line-height: 1;
}

.service-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8d8d8;
  flex-shrink: 0;

  transition:
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.service-icon svg {
  width: 36px;
  height: 36px;
}

.service-icon svg * {
  stroke: currentColor;
}

.service-card:hover .service-icon {
  color: #e30613;
  border-color: #e30613;
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(227, 6, 19, 0.2);
}

.service-card h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.25rem, 1.35vw, 1.55rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: #ffffff;
}

.service-card .red-line {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 4px;
  background-color: #e30613;
  margin: 0 auto 18px auto;
  flex-shrink: 0;
}

.service-card p {
  position: relative;
  z-index: 2;
  color: #a8adb4;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 24px;
}

.service-details-btn {
  position: relative;
  z-index: 2;
  margin-top: auto;
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid #e30613;
  border-radius: 8px;
  background: transparent;
  color: #e30613;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.service-details-btn:hover {
  background-color: #e30613;
  color: #ffffff;
  transform: translateY(-2px);
}

.services-cta-box {
  margin: 70px auto 0 auto;
  padding: 34px 38px;
  max-width: 1120px;
  border: 1px solid #343537;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.1), transparent 40%), #151617;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.services-cta-box h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #ffffff;
}

.services-cta-box p {
  color: #a8adb4;
}

.services-cta-box .navigate-to-contact-page {
  min-width: 250px;
  height: 58px;
  border: 2px solid #e30613;
  border-radius: 8px;
  background: transparent;
  color: #e30613;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.services-cta-box .navigate-to-contact-page p {
  color: inherit;
  margin: 0;
}

.services-cta-box .navigate-to-contact-page:hover {
  background-color: #e30613;
  color: #ffffff;
  transform: translateY(-3px);
}

.services-cta-box .navigate-to-contact-page:hover path {
  stroke: #ffffff;
}

@media (max-width: 1200px) {
  .services-inner {
    width: 90%;
  }

  .services-card-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card {
    min-height: 395px;
  }
}

@media (max-width: 1024px) {
  .services-section {
    padding: 80px 0;
  }

  .services-title-box {
    max-width: 760px;
  }

  .services-title-box h1 {
    font-size: clamp(2.25rem, 5vw, 3.2rem);
  }

  .services-card-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .service-card {
    min-height: 390px;
    padding: 32px 22px 26px 22px;
  }

  .service-card h2 {
    font-size: 1.32rem;
  }

  .services-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .subpage-header contact-details-bar {
    display: none;
  }

  .subpage-header nav {
    min-height: auto;
    padding: 12px 24px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .subpage-header nav img {
    max-width: 90px;
  }

  .subpage-header nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .subpage-header nav .nav-link {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .services-section {
    padding: 70px 0;
  }

  .services-inner {
    width: 90%;
  }

  .services-title-box {
    text-align: center;
    margin-bottom: 44px;
  }

  .services-title-box h1 {
    font-size: 2.35rem;
  }

  .services-title-box p {
    font-size: 1rem;
  }

  .services-card-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .service-card {
    min-height: 370px;
  }

  .services-cta-box {
    padding: 30px 26px;
  }
}

@media (max-width: 700px) {
  .subpage-header nav {
    flex-direction: column;
    padding: 14px 18px;
  }

  .subpage-header nav ul {
    width: 100%;
  }

  .subpage-header nav .nav-link {
    font-size: 0.85rem;
  }

  .services-section {
    padding: 60px 0;
  }

  .services-inner {
    width: 92%;
  }

  .services-title-box {
    text-align: left;
    margin-bottom: 38px;
  }

  .services-title-box h3 {
    text-align: left;
  }

  .services-title-box h1 {
    font-size: 2.1rem;
  }

  .services-title-box .red-line {
    margin-left: 0;
  }

  .services-title-box p {
    margin-left: 0;
    text-align: left;
  }

  .services-card-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: auto;
    padding: 30px 22px 24px 22px;
  }

  .service-card p {
    max-width: 520px;
  }

  .services-cta-box {
    margin-top: 50px;
    padding: 26px 20px;
  }

  .services-cta-box .navigate-to-contact-page {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .subpage-header nav {
    padding: 12px 14px;
  }

  .subpage-header nav img {
    max-width: 76px;
  }

  .subpage-header nav ul {
    gap: 6px;
  }

  .subpage-header nav .nav-link {
    font-size: 0.78rem;
    padding: 9px 8px;
  }

  .services-section {
    padding: 54px 0;
  }

  .services-inner {
    width: 90%;
  }

  .services-title-box h1 {
    font-size: 1.85rem;
    line-height: 1.08;
  }

  .services-title-box p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .service-icon {
    width: 62px;
    height: 62px;
  }

  .service-icon svg {
    width: 32px;
    height: 32px;
  }

  .service-number {
    font-size: 1.9rem;
  }

  .service-card h2 {
    font-size: 1.28rem;
  }

  .service-card p {
    font-size: 0.93rem;
  }

  .service-details-btn {
    min-height: 46px;
  }

  .services-cta-box h2 {
    font-size: 1.35rem;
  }

  .services-cta-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 380px) {
  .services-inner {
    width: 92%;
  }

  .subpage-header nav .nav-link {
    font-size: 0.72rem;
    padding: 8px 6px;
  }

  .services-title-box h1 {
    font-size: 1.65rem;
  }

  .service-card {
    padding: 28px 18px 22px 18px;
  }

  .service-card h2 {
    font-size: 1.18rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .services-cta-box {
    padding: 24px 16px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.reveal-left {
  transform: translateX(-42px);
}

.reveal.reveal-right {
  transform: translateX(42px);
}

.reveal.reveal-scale {
  transform: scale(0.96);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  will-change: auto;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  padding: 22px;
}

.service-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  opacity: 1;
  animation: modalOverlayFadeIn 0.28s ease forwards;
}

.service-modal-content {
  position: relative;
  width: min(1080px, 100%);
  max-height: 88svh;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.08), transparent 35%), #151617;
  border: 1px solid #343537;
  border-radius: 16px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 0 28px rgba(227, 6, 19, 0.12);

  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  overflow: hidden;

  animation: modalFadeIn 0.28s ease forwards;
}

.service-modal.closing .service-modal-overlay {
  animation: modalOverlayFadeOut 0.24s ease forwards;
}

.service-modal.closing .service-modal-content {
  animation: modalFadeOut 0.24s ease forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
}

@keyframes modalOverlayFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalOverlayFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 4;

  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;

  font-size: 2rem;
  line-height: 1;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.service-modal-close:hover {
  background: #e30613;
  border-color: #e30613;
  color: #ffffff;
  transform: rotate(90deg);
}

.service-modal-image-box {
  min-height: 520px;
  background: #0b0c0f;
}

.service-modal-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.9);
}

.service-modal-text-box {
  padding: clamp(34px, 4vw, 54px) clamp(26px, 4vw, 50px);
  overflow-y: auto;
}

.service-modal-text-box span {
  color: #e30613;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.service-modal-text-box h2 {
  margin-top: 12px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: #ffffff;
}

.service-modal-text-box .red-line {
  width: 95px;
  height: 4px;
  background-color: #e30613;
  margin-bottom: 24px;
}

.service-modal-text-box p {
  color: #b5bac1;
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 28px;
}

.service-modal-text-box h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #ffffff;
}

.service-modal-text-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 34px 0;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-modal-text-box li {
  position: relative;
  color: #d6d6d6;
  line-height: 1.55;
  padding-left: 30px;
}

.service-modal-text-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;

  width: 11px;
  height: 11px;
  border: 2px solid #e30613;
  border-radius: 50%;
}

.modal-contact-btn {
  min-width: 210px;
  height: 54px;
  border: 2px solid #e30613;
  border-radius: 8px;
  background: #e30613;
  color: #ffffff;

  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.modal-contact-btn:hover {
  background: transparent;
  color: #e30613;
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(227, 6, 19, 0.18);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .service-modal {
    padding: 20px;
  }

  .service-modal-content {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
    max-height: 90svh;
    overflow-y: auto;
  }

  .service-modal-image-box {
    min-height: 280px;
    max-height: 320px;
  }

  .service-modal-image-box img {
    object-position: center;
  }

  .service-modal-text-box {
    overflow-y: visible;
  }
}

@media (max-width: 768px) {
  .service-modal {
    padding: 18px;
    align-items: flex-start;
  }

  .service-modal.active {
    align-items: flex-start;
    padding-top: 34px;
  }

  .service-modal-content {
    width: 100%;
    max-height: calc(100svh - 68px);
    border-radius: 14px;
  }

  .service-modal-image-box {
    min-height: 240px;
    max-height: 260px;
  }

  .service-modal-text-box {
    padding: 34px 28px;
  }

  .service-modal-text-box h2 {
    font-size: 2.1rem;
  }

  .service-modal-text-box p {
    font-size: 0.96rem;
  }

  .service-modal-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 520px) {
  .service-modal {
    padding: 12px;
  }

  .service-modal.active {
    padding-top: 20px;
  }

  .service-modal-content {
    max-height: calc(100svh - 40px);
    border-radius: 12px;
  }

  .service-modal-image-box {
    min-height: 190px;
    max-height: 210px;
  }

  .service-modal-text-box {
    padding: 30px 22px 24px 22px;
  }

  .service-modal-text-box span {
    font-size: 0.78rem;
  }

  .service-modal-text-box h2 {
    font-size: 1.65rem;
    line-height: 1.1;
  }

  .service-modal-text-box .red-line {
    width: 76px;
    margin-bottom: 20px;
  }

  .service-modal-text-box h3 {
    font-size: 1.15rem;
  }

  .service-modal-text-box p {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .service-modal-text-box li {
    font-size: 0.92rem;
    padding-left: 26px;
  }

  .modal-contact-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .service-modal-text-box {
    padding: 28px 18px 22px 18px;
  }

  .service-modal-text-box h2 {
    font-size: 1.45rem;
  }

  .service-modal-image-box {
    min-height: 165px;
  }

  .service-modal-close {
    width: 36px;
    height: 36px;
    font-size: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-modal-content,
  .service-modal-overlay,
  .service-modal.closing .service-modal-content,
  .service-modal.closing .service-modal-overlay {
    animation: none;
  }
}

.contact-page {
  background: #050505;
  color: #ffffff;
}

.contact-hero-section {
  padding: clamp(72px, 8vw, 130px) 0 clamp(44px, 5vw, 80px);
  background:
    radial-gradient(circle at 18% 0%, rgba(227, 6, 19, 0.18), transparent 32%),
    linear-gradient(180deg, #08090b 0%, #050505 100%);
  overflow: hidden;
}

.contact-hero-container {
  width: min(1180px, 88%);
  margin: 0 auto;
  text-align: center;
}

.section-label {
  margin: 0 0 12px;
  color: #e30613;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 0.9rem;
}

.contact-hero-container h1 {
  max-width: 980px;
  margin: 0 auto;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 1.5;
  text-transform: uppercase;
}

.contact-hero-container .red-line {
  width: 130px;
  height: 4px;
  margin: 28px auto 26px;
  background-color: #e30613;
}

.contact-hero-text {
  max-width: 760px;
  margin: 0 auto;
  color: #b7bdc7;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.contact-content-section {
  padding: clamp(44px, 6vw, 90px) 0 clamp(70px, 7vw, 120px);
  background:
    radial-gradient(
      circle at right top,
      rgba(227, 6, 19, 0.11),
      transparent 28%
    ),
    linear-gradient(180deg, #050505 0%, #0b0c0f 48%, #050505 100%);
}

.contact-content-container {
  width: min(1380px, 88%);
  margin: 0 auto;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: stretch;
}

.contact-left-column,
.contact-right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-action-card {
  min-height: 205px;
  padding: 30px;
  border: 1px solid #343537;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.08), transparent 50%), #151617;
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-action-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 6, 19, 0.85);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42);
}

.contact-action-card.highlight-card {
  border-color: rgba(227, 6, 19, 0.7);
}

.contact-action-icon {
  width: 54px;
  height: 54px;
  border: 1px solid #e30613;
  border-radius: 50%;
  background: rgba(227, 6, 19, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  font-size: 1.35rem;
}

.contact-action-card h2 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.contact-action-card p {
  margin: 0 0 18px;
  color: #b7bdc7;
  line-height: 1.55;
}

.contact-action-card strong {
  color: #ff1f2d;
  font-weight: 800;
}

.contact-prep-card {
  padding: 34px 38px;
  border: 1px solid #343537;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.11), transparent 44%), #151617;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.contact-prep-card span {
  color: #e30613;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.9rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 0.9;
}

.contact-prep-card h2 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.contact-prep-card p {
  margin: 0;
  color: #b7bdc7;
  line-height: 1.7;
}

.contact-workshop-card,
.contact-address-card {
  padding: 34px;
  border: 1px solid #343537;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.12), transparent 52%), #151617;
}

.contact-workshop-card h2,
.contact-address-card h2 {
  margin: 0 0 14px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
}

.contact-workshop-card p,
.contact-address-card p {
  margin: 0 0 18px;
  color: #b7bdc7;
  line-height: 1.7;
}

.contact-workshop-card strong {
  display: block;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.route-button {
  width: fit-content;
  min-height: 58px;
  margin-top: 12px;
  padding: 0 28px;
  border-radius: 999px;
  background: #e30613;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.route-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(227, 6, 19, 0.28);
  background-color: #ff1f2d;
}

.contact-map-card {
  margin-top: clamp(34px, 5vw, 70px);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid #343537;
  border-radius: 22px;
  background:
    linear-gradient(110deg, rgba(227, 6, 19, 0.08), transparent 48%), #151617;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.contact-map-text {
  margin-bottom: 26px;
}

.contact-map-text h2 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.contact-map-text p:not(.section-label) {
  margin: 0;
  color: #b7bdc7;
  line-height: 1.6;
}

.contact-map-wrapper {
  width: 100%;
  height: clamp(310px, 44vw, 520px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #343537;
  background: #0b0c0f;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1100px) {
  .contact-content-container {
    width: min(920px, 88%);
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-right-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-workshop-card,
  .contact-address-card {
    min-height: 260px;
  }
}

@media (max-width: 820px) {
  .contact-hero-section {
    padding-top: 66px;
    padding-bottom: 38px;
  }

  .contact-content-section {
    padding-top: 36px;
  }

  .contact-content-container {
    width: min(680px, 90%);
  }

  .contact-action-grid,
  .contact-right-column {
    grid-template-columns: 1fr;
  }

  .contact-action-card {
    min-height: auto;
  }

  .contact-workshop-card,
  .contact-address-card {
    min-height: auto;
  }

  .contact-map-wrapper {
    height: 380px;
  }
}

@media (max-width: 560px) {
  .contact-content-container,
  .contact-hero-container {
    width: calc(100% - 32px);
  }

  .contact-hero-container {
    text-align: left;
  }

  .contact-hero-container .red-line {
    margin-left: 0;
    margin-right: 0;
  }

  .contact-action-card {
    padding: 24px 20px;
    flex-direction: column;
    gap: 18px;
  }

  .contact-action-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .contact-prep-card {
    padding: 26px 20px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-prep-card span {
    font-size: 3.2rem;
  }

  .contact-workshop-card,
  .contact-address-card,
  .contact-map-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .route-button {
    width: 100%;
    justify-content: center;
  }

  .contact-map-wrapper {
    height: 320px;
    border-radius: 12px;
  }
}

@media (max-width: 380px) {
  .contact-content-container,
  .contact-hero-container {
    width: calc(100% - 24px);
  }

  .contact-action-card,
  .contact-prep-card,
  .contact-workshop-card,
  .contact-address-card,
  .contact-map-card {
    padding: 20px 16px;
  }

  .contact-map-wrapper {
    height: 280px;
  }
}
.scroll-to-top-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9000;

  width: 56px;
  height: 56px;
  border: 1px solid rgba(227, 6, 19, 0.75);
  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.01)
    ),
    #151617;

  color: #e30613;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(227, 6, 19, 0.18);

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.92);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top-btn:hover {
  background: #e30613;
  color: #ffffff;
  border-color: #e30613;
  transform: translateY(-4px) scale(1.04);
}

.scroll-to-top-btn:active {
  transform: translateY(-1px) scale(0.97);
}

.scroll-to-top-btn svg {
  pointer-events: none;
}

@media (max-width: 700px) {
  .scroll-to-top-btn {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .scroll-to-top-btn svg {
    width: 21px;
    height: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-to-top-btn {
    transition: none;
  }
}
