/* =============================================
    HERO
   ============================================= */

.hero-contact {
    position: relative;
    height: 60vh;
    display: flex;
}
.hero-contact .container {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-contact .overlay {
    background-image: url(../images/colombia.webp);
    background-size: cover;
    background-position: bottom center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: brightness( 74% ) contrast( 100% ) saturate( 100% ) blur( 2.5px ) hue-rotate( 0deg );
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hero-contact .contact-cta {
    text-decoration: none;
    color: #FFF;
    font-size: 1.3rem;
    padding: 18px 80px;
    border: 2px solid #fff;
    border-radius: 8px;
    line-height: 21px;
    transition: all .3s ease;

    &:hover {
        color: #FFF;
        background-color: var(--tertiary-color);
        border-color: var(--tertiary-color);
    }
}

.contact-section {
    padding-block: 60px;
}

.contact-section .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.contact-section .section-title p {
    max-width: 700px;
    font-weight: 600;
}

.contact-section .section-title .contact-mini-title {
  color: #005AA6;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  line-height: 15px;
}

.contact-section form {
    display: flex;
    flex-direction: column;
}

.contact-section form input,
.contact-section form textarea {
    border: 2px solid #005aa6;
}

.contact-section form button[type="submit"] {
    background-color: var(--tertiary-color);
    margin: auto;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (768px - 1024px)
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-contact {
    height: 50vh;
  }

  .hero-contact .container {
    padding: 60px 0;
  }

  .cta-buttons {
    gap: 15px;
  }

  .hero-contact .contact-cta {
    font-size: 1.1rem;
    padding: 15px 60px;
  }

  .contact-section form input,
  .contact-section form textarea {
    font-size: 0.95rem;
    padding: 10px 12px;
  }

  .contact-section form button[type="submit"] {
    font-size: 1.2rem;
    padding: 12px 30px;
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (768px and below)
   ============================================ */
@media (max-width: 768px) {
  .hero-contact {
    height: 45vh;
    min-height: 300px;
  }

  .hero-contact .container {
    padding: 40px 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-contact .overlay {
    filter: brightness(60%) contrast(100%) saturate(100%) blur(2.5px) hue-rotate(0deg);
  }

  .hero-contact h1 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
  }

  .hero-contact p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .hero-contact .contact-cta {
    font-size: 1rem;
    padding: 14px 40px;
    width: 100%;
    text-align: center;
  }

  .contact-section {
    padding-block: 40px;
  }

  .contact-section .section-title {
    gap: 1.5rem;
  }

  .contact-section .section-title .contact-mini-title {
    font-size: 0.95rem;
    letter-spacing: 2.4px;
  }

  .contact-section .section-title h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .contact-section .section-title p {
    font-size: 1rem;
    max-width: 90%;
  }

  .contact-section form {
    max-width: 95%;
    margin: 0 auto;
  }

  .contact-section form input,
  .contact-section form textarea {
    font-size: 16px;
    padding: 10px 12px;
    margin-bottom: 1rem;
  }

  .contact-section form input:focus,
  .contact-section form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 112, 185, 0.1);
  }

  .contact-section form button[type="submit"] {
    font-size: 1.1rem;
    padding: 12px 25px;
    width: 100%;
    max-width: 300px;
    margin-top: 1rem;
  }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE (480px and below)
   ============================================ */
@media (max-width: 480px) {
  .hero-contact {
    height: 40vh;
    min-height: 280px;
  }

  .hero-contact .container {
    padding: 30px 15px;
  }

  .hero-contact h1 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .hero-contact p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .cta-buttons {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .hero-contact .contact-cta {
    font-size: 0.9rem;
    padding: 12px 30px;
    width: 100%;
  }

  .contact-section {
    padding: 30px 0;
  }

  .contact-section .section-title {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .contact-section .section-title .contact-mini-title {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .contact-section .section-title h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .contact-section .section-title p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .contact-section form {
    max-width: 100%;
    padding: 0 15px;
  }

  .contact-section form input,
  .contact-section form textarea {
    font-size: 16px;
    padding: 10px 10px;
    margin-bottom: 0.75rem;
    border-radius: 4px;
  }

  .contact-section form label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 600;
  }

  .contact-section form textarea {
    min-height: 100px;
    resize: vertical;
  }

  .contact-section form button[type="submit"] {
    font-size: 1rem;
    padding: 10px 20px;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
  }

  /* Improve touch targets */
  .contact-section form input,
  .contact-section form textarea,
  .contact-section form button {
    min-height: 44px;
  }
}