/* ------HOMEPAGE------  */

/* 🦸🏻‍♂️🦸🏻‍♂️🦸🏻‍♂️ HERO 🦸🏻‍♂️🦸🏻‍♂️🦸🏻‍♂️ */

.hero {
  display: flex;
  justify-content: space-between;
  padding-left: 6.5rem;
  padding-right: 6.5rem;
  padding-top: clamp(140px, 20vh, 200px);
  padding-bottom: 3rem;
  min-height: 88vh;

  & .hero-left {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    max-width: 40vw;

    & .hero-title {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: var(--font-size-mega);
      color: var(--text-color);
      margin-bottom: 2rem;
      line-height: 0.9;
    }

    & .hero-subtitle {
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--text-color-secondary);
      margin-bottom: 2rem;
    }

    & .hero-cta-wrapper {
      display: flex;
      gap: 2rem;

      & a {
        text-decoration: none;
        font-family: var(--font-main);
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-small);
        color: var(--text-color);
        font-weight: 500;
        border: var(--border-style-light);
        border-radius: 20px;
        background: var(--background-color-cta);
        transition:
          0.3s ease,
          color 0.3s ease;

        &:hover {
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
          background: #f7f7f7;
        }
      }

      & a:first-child {
        background: var(--cta-color);
        color: var(--white);

        &:hover {
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
        }
      }
    }
  }

  & .hero-right {
    margin-top: auto;
  }

  & .hero-right img {
    width: 370px;
    height: auto;
    margin-top: auto;
    object-fit: cover;
  }
}

/* 📁📁📁 SELECTED PROJECTS 📁📁📁 */

.selected-projects {
  padding: 3rem 6.5rem 5rem 6.5rem;
  background-color: var(--white);

  & .selected-upper {
    display: flex;
    justify-content: space-between;
    align-items: center;

    & .selected-upper-text {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;

      & h3 {
        font-family: var(--font-heading);
        font-size: var(--font-size-h3);
        color: var(--text-color);
        font-weight: 700;
      }

      & small {
        font-family: var(--font-main);
        font-size: var(--font-size-small);
        color: var(--third-color);
        font-weight: 500;
      }
    }

    & .view-all {
      position: relative;
      text-decoration: none;
      display: flex;
      gap: 0.5rem;
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--text-color);
      font-weight: 500;
      margin-top: auto;
      padding-bottom: 2px;
      transition: color 0.25s ease;

      &::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 1px;
        background: currentColor;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
      }
      &:hover::after {
        transform: scaleX(1);
      }
    }
  }

  & .selected-lower {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 1.4rem 0 0 0;

    & .project-card {
      position: relative;
      display: block;
      border-radius: var(--border-radius);
      overflow: hidden;

      &:hover img {
        transform: scale(1.05);
      }

      &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.65),
          rgba(0, 0, 0, 0)
        );
        opacity: 0.9;
        transition: opacity 0.35s ease;
        z-index: 1;
      }

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1);
        transition: transform 0.35s ease;
      }

      & .project-content {
        position: absolute;
        left: 1.25rem;
        bottom: 1.25rem;
        z-index: 2;
        color: white;

        & h3 {
          font-family: var(--font-heading);
          font-size: var(--font-size-normal);
          font-weight: 700;
          margin: 0.25rem 0;
        }

        & small {
          font-family: var(--font-main);
          font-size: var(--font-size-mini);
          font-weight: 500;
          color: var(--background-color);
        }
      }
    }
  }
}

/* ✍🏻✍🏻✍🏻 TESTIMONIALS ✍🏻✍🏻✍🏻 */

.testimonials {
  padding: 4rem 6.5rem 5rem 6.5rem;
  background-color: var(--background-color);

  & .testimonials-upper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;

    & small {
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--secondary-color);
      font-weight: 500;
    }

    & h3 {
      font-family: var(--font-heading);
      font-size: var(--font-size-h3);
      color: var(--text-color);
      font-weight: 700;
    }
  }

  .testimonials-lower {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.4rem;

    & .testimonials-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 1.5rem;
      gap: 1.3rem;
      box-shadow: var(--drop-shadow);
      border: var(--border-style-light);
      border-radius: var(--border-radius);
      background-color: var(--white);

      & .testimonials-card-upper {
        display: flex;
        align-items: center;
        gap: 1rem;

        & .testimonials-name {
          margin-top: auto;

          & h4 {
            font-family: var(--font-heading);
            font-size: var(--font-size-normal);
            font-weight: 700;
            color: var(--text-color);
          }

          & small {
            font-family: var(--font-main);
            font-size: var(--font-size-mini);
            color: var(--text-color-secondary);
            font-weight: 500;
          }
        }

        & .testimonials-photo {
          display: flex;
          align-items: center;

          & img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
          }
        }

        & .testimonials-svg {
          margin-left: auto;
          margin-bottom: 0.8rem;

          & svg {
            color: var(--secondary-color);
          }
        }
      }
    }

    & .testimonials-card-lower {
      font-family: var(--font-main);
      font-size: var(--font-size-mini);
      font-weight: 200;
      color: var(--text-color-secondary);
      line-height: 1.2;
    }
  }
}

/* 🪪🪪🪪 CONTACT SECTION HOME 🪪🪪🪪 */

.contact-section {
  padding: 3rem 6.5rem 5rem 6.5rem;
  background-color: var(--white);

  & .contact-card {
    height: 300px;
    background: var(--cta-color);
    border-radius: var(--border-radius);
    border: var(--border-style-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    & h3 {
      font-family: var(--font-heading);
      font-size: var(--font-size-h3);
      color: var(--white);
      font-weight: 700;
    }

    & a {
      text-decoration: none;
      font-family: var(--font-main);
      padding: 0.75rem 1.5rem;
      font-size: var(--font-size-small);
      color: var(--text-color);
      font-weight: 500;
      border: var(--border-style-light);
      border-radius: 20px;
      background: var(--background-color-cta);
      transition:
        0.3s ease,
        color 0.3s ease;
      margin-top: 1rem;

      &:hover {
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
        background: #f7f7f7;
      }
    }

    & p {
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--white);
      font-weight: 400;
    }
  }
}

/* ------PORTFOLIO PAGE------  */

.work {
  padding-inline: 6.5rem;
  padding-top: clamp(140px, 20vh, 200px);
  padding-bottom: 2rem;
  background-color: var(--white);

  & h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h2);
    color: var(--text-color);
    font-weight: 700;
  }

  & .work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;

    & .project-card {
      position: relative;
      display: block;
      border-radius: var(--border-radius);
      overflow: hidden;
      aspect-ratio: 1 / 1;

      &:hover img {
        transform: scale(1.05);
      }

      &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.65),
          rgba(0, 0, 0, 0)
        );
        opacity: 0.9;
        transition: opacity 0.35s ease;
        z-index: 1;
      }

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transform: scale(1);
        transition: transform 0.35s ease;
      }

      & .project-content {
        position: absolute;
        left: 1.25rem;
        bottom: 1.25rem;
        z-index: 2;
        color: white;

        & h3 {
          font-family: var(--font-heading);
          font-size: var(--font-size-normal-1);
          font-weight: 700;
          margin: 0.25rem 0;
        }

        & small {
          font-family: var(--font-main);
          font-size: var(--font-size-mini);
          font-weight: 500;
          color: var(--background-color);
        }
      }
    }
  }
}

/* ------ABOUT ME------  */

.about-section1 {
  padding-inline: 6.5rem;
  padding-top: clamp(140px, 20vh, 200px);
  padding-bottom: 5rem;
  background-color: var(--white);
  display: flex;
  gap: 2rem;

  & div:first-child {
    max-width: 600px;

    & img {
      max-width: 320px;
      object-fit: cover;
      aspect-ratio: 3/3.5;
      filter: grayscale(100%);
      border-radius: var(--border-radius);
    }
  }

  & div:last-child {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    & small {
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--secondary-color);
      font-weight: 500;
    }

    & h2 {
      font-family: var(--font-heading);
      font-size: var(--font-size-h2);
      color: var(--text-color);
      font-weight: 700;
    }

    & p {
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--text-color-secondary);
      line-height: 1.5;
    }
  }
}

.about-section2 {
  padding-inline: 6.5rem;
  padding-bottom: 3rem;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  & .small {
    margin-bottom: 0.5rem;

    & small {
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--third-color);
      font-weight: 500;
    }
  }

  & .skills-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;

    & .skills-card {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
      padding: 1.5rem;
      gap: 1.3rem;
      box-shadow: var(--drop-shadow);
      border: var(--border-style-light);
      border-radius: var(--border-radius);
      background-color: var(--white);

      & svg {
        color: var(--third-color);
      }

      & small {
        font-family: var(--font-main);
        font-size: var(--font-size-small);
        color: var(--text-color-secondary);
        font-weight: 500;
      }
    }
  }
}

.about-section3 {
  padding-inline: 6.5rem;
  padding-bottom: 3rem;
  padding-top: 3rem;
  display: flex;
  background-color: var(--white);
  flex-direction: column;
  gap: 1rem;

  & .small {
    margin-bottom: 0.5rem;

    & small {
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--secondary-color);
      font-weight: 500;
    }
  }

  & .beyond-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;

    & .beyond-card {
      display: flex;
      flex-direction: column;

      & img {
        width: 100%;
        height: auto;
        border-radius: var(--border-radius);
        object-fit: cover;
        aspect-ratio: 3/3;
        margin-bottom: 0.5rem;
      }

      & h4 {
        font-family: var(--font-heading);
        font-size: var(--font-size-small);
        color: var(--text-color);
        font-weight: 700;
        margin-bottom: 0.3rem;
      }

      & p {
        font-family: var(--font-main);
        font-size: var(--font-size-mini);
        color: var(--text-color-secondary);
        line-height: 1.4;
      }
    }
  }
}

/* ------PROJECTS------  */

.project-section1 {
  padding-inline: 6.5rem;
  padding-top: clamp(140px, 20vh, 200px);
  padding-bottom: 3rem;
  gap: 2rem;
  background-color: var(--white);
  display: flex;

  & .project-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;

    & small {
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--secondary-color);
      font-weight: 500;
    }

    & h4 {
      font-family: var(--font-heading);
      font-size: var(--font-size-h2);
      color: var(--text-color);
      font-weight: 700;
    }

    & p {
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--text-color-secondary);
      line-height: 1.5;
    }

    & .project-info1 {
      position: relative;
      display: flex;
      margin-top: 4rem;
      padding-top: 5rem;
      gap: 5rem;

      & div {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1.3px;
        background-color: #ced5de;
        border-radius: 5px;
      }

      & span {
        font-size: var(--font-size-mini);
        font-family: var(--font-main);
        font-weight: 500;
        color: var(--text-color-light);
      }
    }
  }

  & .project-image {
    margin-left: auto;

    & img {
      width: 450px;
      height: auto;
      aspect-ratio: 3/3.5;
      border-radius: var(--border-radius);
      object-fit: cover;
    }
  }
}

.project-section2 {
  padding-inline: 6.5rem;
  padding-bottom: 5rem;
  padding-top: 0.5rem;
  background-color: var(--white);
  display: flex;
  gap: 2rem;

  & .section2-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;

    & h4 {
      font-family: var(--font-heading);
      font-size: var(--font-size-h3);
      color: var(--text-color);
      font-weight: 700;
    }

    & p {
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--text-color-secondary);
      line-height: 1.5;
    }
  }

  & .section2-deliverables {
    position: relative;
    margin-left: auto;
    display: flex;
    margin-right: 2rem;
    padding-left: 4rem;
    flex-direction: column;
    gap: 1rem;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 1.2px;
      height: 100%;
      background-color: #ced5de;
      border-radius: 5px;
    }

    & span {
      font-size: var(--font-size-mini);
      font-family: var(--font-main);
      font-weight: 500;
      color: var(--text-color-light);
    }

    & .deliverables {
      display: flex;
      flex-direction: column;
      gap: 1rem;

      & .deliverable {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      & .deliverable-name {
        font-size: var(--font-size-small);
        font-family: var(--font-main);
        font-weight: 600;
        color: var(--text-color);
      }
    }

    & a {
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-main);
      padding: 0.75rem 1.5rem;
      font-size: var(--font-size-small);
      color: var(--white);
      font-weight: 500;
      margin-top: 1rem;
      border: var(--border-style-light);
      border-radius: 20px;
      background: var(--text-color);
      transition:
        0.3s ease,
        color 0.3s ease;

      &:hover {
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
        background: #f7f7f7;
        color: var(--text-color);
      }
    }
  }
}

.project-section3 {
  padding-inline: 6.5rem;
  padding-bottom: 5rem;
  padding-top: 0.5rem;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  background-color: var(--white);

  & .project-section3-img {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    & img {
      width: 100%;
      height: auto;
      aspect-ratio: 4/3;
      gap: 1rem;
      border-radius: var(--border-radius);
      object-fit: cover;
    }
  }
}

.project-skip {
  display: flex;
  justify-content: space-between;
  padding-inline: 6.5rem;
  padding-block: 3rem;
  background-color: #ffffff;
}

/* ------CONTACT------  */

.contact {
  padding-top: clamp(140px, 20vh, 200px);
  background: var(--white);
  padding-inline: 6.5rem;
  padding-bottom: 10rem;
  display: flex;
  gap: 2rem;

  & .contact-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;

    & small {
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--secondary-color);
      font-weight: 500;
    }

    & h2 {
      font-family: var(--font-heading);
      font-size: var(--font-size-h2);
      color: var(--text-color);
      font-weight: 700;
    }

    & p {
      font-family: var(--font-main);
      font-size: var(--font-size-small);
      color: var(--text-color-secondary);
      line-height: 1.5;
    }

    & .contact-subs {
      display: flex;
      flex-direction: column;
      gap: 1rem;

      & .contact-sub {
        display: flex;
        gap: 1rem;
        align-items: center;

        & .contact-sub-text {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;

          & small {
            font-family: var(--font-main);
            font-size: var(--font-size-mini);
            color: var(--text-color-secondary);
          }

          & h4 {
            font-family: var(--font-heading);
            font-size: var(--font-size-small);
            color: var(--text-color);
            font-weight: 500;
          }
        }
      }
    }

    & .followme {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      margin-top: 1rem;

      & small {
        font-family: var(--font-main);
        font-size: var(--font-size-small);
        color: #808080;
        font-weight: 500;
      }

      & .followme-svg {
        text-decoration: none;
        display: flex;
        gap: 1rem;
      }
    }
  }

  & .contact-card {
    background: var(--background-color);
    border: var(--border-style-light);
    flex: 1;
    border-radius: var(--border-radius);

    & .contact-form {
      display: flex;
      flex-direction: column;
      height: 100%;
      gap: 1.5rem;
      padding: 2.6rem;

      & .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;

        & .field {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;

          & input {
            width: 100%;
            padding: 0.9rem 1.1rem;
            border-radius: 999px;
            border: 1px solid #e2e8f0;
            background: #ffffff;
            font-size: 0.95rem;
            color: #0f172a;
            outline: none;
            transition:
              border-color 0.2s ease,
              box-shadow 0.2s ease;

            &::placeholder {
              font-family: var(--font-main);
            }
          }

          & label {
            font-family: var(--font-main);
            font-size: var(--font-size-mini);
            color: var(--text-color-secondary);
            font-weight: 500;
          }
        }
      }

      & .fieldtwo {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        flex: 1;

        & label {
          font-family: var(--font-main);
          font-size: var(--font-size-mini);
          color: var(--text-color-secondary);
          font-weight: 500;
        }

        & textarea {
          width: 100%;
          height: 100%;
          padding: 0.9rem 1.1rem;
          border-radius: var(--border-radius);
          border: 1px solid #e2e8f0;
          background: #ffffff;
          font-size: 0.95rem;
          color: #0f172a;
          outline: none;
          transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease;
          flex: 1;

          &::placeholder {
            font-family: var(--font-main);
          }
        }
      }

      & .button-submit {
        text-decoration: none;
        font-family: var(--font-main);
        font-size: var(--font-size-small);
        color: var(--text-color);
        font-weight: 500;
        background: var(--cta-color);
        color: var(--white);
        padding: 1.2rem 1.5rem;
        cursor: pointer;
        border: none;
        transition:
          0.2s ease,
          color 0.2s ease;
        border-radius: 20px;

        &:hover {
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
        }
      }
    }
  }
}

/* 👨🏻‍🏫👨🏻‍🏫👨🏻‍🏫 MULTIPLE CLASSES 👨🏻‍🏫👨🏻‍🏫👨🏻‍🏫 */

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  transition: 0.3s;
}

& .gradient-text {
  background: var(--cta-color);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bold {
  font-weight: 700;
}

/* 📱📱📱 MEDIA QUERIES 📱📱📱 */

@media (max-width: 768px) {
  /* HOME PAGE */

  header .navbar {
    padding: 1.5rem 2rem;
  }

  .hero {
    position: relative;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding-inline: 2rem;
    padding-top: clamp(80px, 13vh, 130px);

    & .hero-left {
      max-width: 100%;
      z-index: 5;
      margin-top: -60px;

      & .hero-cta-wrapper {
        justify-content: center;
      }
    }

    & .hero-right {
      margin-top: 3rem;
      position: relative;

      & img {
        width: 250px;
      }
    }
  }

  /* 📁📁📁 SELECTED PROJECTS 📁📁📁 */

  .selected-projects {
    padding: 1.5rem 2rem 3rem 2rem;
    background-color: var(--white);
  }

  .selected-projects .selected-lower {
    grid-template-columns: repeat(1, 1fr);
  }

  /* ✍🏻✍🏻✍🏻 TESTIMONIALS ✍🏻✍🏻✍🏻 */

  .testimonials {
    padding: 2rem;

    & .testimonials-lower {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  /* 🪪🪪🪪 CONTACT SECTION 🪪🪪🪪 */

  .contact-section {
    padding: 2rem;

    & .contact-card {
      height: 160px;
      gap: 0.5rem;

      & a {
        margin-top: 0.3rem;
      }
    }
  }

  /* 🦶🏻🦶🏻🦶🏻 FOOTER 🦶🏻🦶🏻🦶🏻 */

  footer {
    padding: 2rem;

    &::before {
      left: 2rem;
      right: 2rem;
    }
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.toggle span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    width: 70%;
    height: 100vh;
    background-color: var(--background-color);
    flex-direction: column;
    justify-content: center;
    gap: 3rem !important;
    transition: 0.4s ease-in-out;
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .navbar .nav-links.active li a {
    font-size: var(--font-size-h3) !important;
    font-size: var(--font-size-normal-1);
  }

  /* PORTFOLIO PAGE */

  .work {
    padding: 2rem;
    padding-top: clamp(80px, 13vh, 130px);

    & .work-grid {
      grid-template-columns: repeat(1, 1fr);
      margin-top: 1rem;
    }
  }

  /* ABOUT PAGE */

  .about-section1 {
    flex-direction: column;
    padding: 2rem;
    padding-top: clamp(80px, 13vh, 130px);
    gap: 1rem;

    & div:first-child img {
      max-width: 100%;
      width: 250px;
      aspect-ratio: 3/3.5;
    }
  }

  .about-section2 {
    padding: 2rem;
  }

  .about-section3 {
    padding: 2rem;

    & .beyond-cards {
      grid-template-columns: repeat(1, 1fr);
      gap: 1rem;
    }
  }

  /* CONTACT PAGE */

  .contact {
    flex-direction: column;
    padding: 2rem;
    padding-top: clamp(80px, 13vh, 130px);

    & .contact-left,
    & .contact-card {
      flex: none;
      width: 100%;
      gap: 1rem;
    }
  }
}
