.contact-section {
    background-color: #f7fafc;
}

.hero-content-grid {
    display: grid;
    align-self: center;
    place-self: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -.025em;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.contact-info p {
    max-width: 500px;
    color: #4a5568;
    font-size: 1.125rem;
}

.contact-info h3 {
    font-size: 1.875rem;
    font-weight: 600;
}

.contact-info span i{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.contact-info span .map-link:hover {
    text-decoration: underline;
}

.contact-form-container {
    max-width: 480px;
    padding-top: 3rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    padding: 1.5rem;
    background-color: #ffffff
}

.form-group {
    display: grid;
    gap: .5rem;
}

.form-group label {
    font-size: .875rem;
    font-weight: 500;
    color: #1a202c;
}

.form-group input,
.form-group textarea {
    display: block;
    width: 100%;
    padding: .625rem .75rem;
    border: 1px solid #e2e8f0;
    border-radius: .375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    font-size: 1rem;
    color: #1a202c;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, .2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.whatsapp-button {
    background-color: #28a745;
    width: 100%;
    margin-top: 1.5rem;
    font-size: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.whatsapp-button:hover {
    background-color: #218838;
}

.whatsapp-button i {
    font-size: 1.25rem;
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 14px 24px;
  background-color: #28a745; /* Green */
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 1000;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media  (max-width: 768px) {
    .tag {
        padding-top: 2.5rem;
    }

    .hero-content-grid {
        margin-inline: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}