/* Contact Section */
.contact-section {
    background-color: #FCFCE9;
    padding: 40px 20px;
}

/* Titles */
.contact-title {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
}

/* Description */
.contact-description {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
}

/* Contact Info Box */
.contact-info {
    background-color: #032719;
    border-radius: 25px;
    padding: 50px 60px;
    color: white;
}

/* Icon Circle */
.icon-circle {
    background: white;
    border-radius: 50%;
    padding: 20px 23px;
    margin-right: 30px;
}

.icon-circle i {
    color: #032719;
    font-size: 23px;
}

/* Info Titles */
.info-title {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 30px;
}

/* Info Text */
.info-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 18px;
}

/* Form Inputs */
.contact-input,
.contact-textarea {
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .contact-section {
        padding: 30px 15px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-info {
        padding: 20px;
    }

    .info-title {
        font-size: 24px;
    }

    .info-text {
        font-size: 16px;
    }

    .contact-input,
    .contact-textarea {
        font-size: 14px;
    }

    .contact-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 575px) {
    .contact-section {
        padding: 20px 10px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-info {
        padding: 15px;
    }

    .info-title {
        font-size: 18px;
    }

    .info-text {
        font-size: 14px;
    }

    .contact-input,
    .contact-textarea {
        font-size: 13px;
    }

    .contact-btn {
        font-size: 13px;
        padding: 6px 12px;
    }
}

.contact-btn-send {
  background-color: black;
  color: white;
  padding: 10px 30px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

 .contact-btn-send {
  position: relative;
  display: inline-block;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  border-radius: 50px;
  padding: 14px 40px;
  font-family: 'Outfit', sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, padding-right 0.3s ease;
}

.contact-btn-send::after {
  content: "↗";
  position: absolute;
  right: 25px;
  top: 48%;
  transform: translateY(-10%) scale(0);
  color: black;
  font-size: 25px;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-btn-send:hover {
  background: #DFE121;
  padding-right: 60px; /* make space for arrow */
}

.contact-btn-send:hover::after {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}