:root {
  --primary-color: #4b70f5;
  --secondary-color: #2ecc71;
  --tertiary-color: #00020f;
}

@media (max-width: 700px) {
  .contact {
    background-color: var(--tertiary-color);
    color: #fff;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;

    .textArea {
      width: 80%;
      margin-left: 2%;
      text-transform: uppercase;
      color: #fff;
      line-height: 1;
      font-weight: 600;
      letter-spacing: 2px;
      font-size: clamp(2rem, 3vw, 4rem);

      .monoColor {
        color: var(--primary-color);
      }
      .font-thin {
        font-weight: 100;
        font-style: italic;
        text-align: center;
        display: block;
      }
    }

    .formArea {
      width: 80%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
      gap: 20px;

      input,
      textarea {
        width: 100%;
        padding: 10px;
        border-radius: 5px;
        border: none;
        background-color: #fff;
        color: #000;
        font-size: 1rem;
        margin-bottom: 20px;
      }

      button {
        padding: 10px 20px;
        background-color: var(--primary-color);
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
      }
    }
  }
}


@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top .right {
    margin-top: 20px;
  }

  .footer-top .left h2 {
    font-size: 2rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }

  .scroll-gallery img {
    height: 120px;
  }

  .services-section h2 {
    font-size: 1.5rem;
  }
}

 @media (max-width: 600px) {
      .testimonial-section h1 {
        font-size: 2.2rem;
      }

      .testimonial-section h3 {
        font-size: 1rem;
      }
    }
