.contact {
  background: var(--gray);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s;
}

.contact-method:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.contact-method-icon.whatsapp {
  background: #25d366;
}

.contact-method strong {
  font-size: 1.1rem;
}

.contact-method span {
  color: #555;
  font-size: 0.9rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

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

.custom-checkbox.small {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: clamp(12px, 1.2vw, 13px);
  color: #333;
  line-height: 1.3;
  margin-top: 0.5rem;
}

.custom-checkbox.small input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1.8px solid #ccc;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.custom-checkbox.small input[type="checkbox"]:hover {
  border-color: #ff8c00;
}

.custom-checkbox.small input[type="checkbox"]:checked {
  background-color: #ff8c00;
  border-color: #ff8c00;
}

.custom-checkbox.small input[type="checkbox"]:checked::after {
  content: "✔";
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 9px;
  color: white;
}

.custom-checkbox.small a {
  color: #ff8c00;
  text-decoration: underline;
}

.custom-checkbox.small a:hover {
  color: #e67e00;
}

#checkboxWrapper.error {
  outline: 2px solid #e53935;
  border-radius: 8px;
  padding: 4px;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

.contact-btn {
    width: 100%; 
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}