/* Contact Section */
#contact {
  background: var(--card-bg);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 50px auto 0;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.contact-form {
  flex: 1;
  background: var(--bg-color);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 15px 40px var(--soft-shadow);
  max-width: 500px;
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px var(--glow-color);
}

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

.contact-3d-visual {
  flex: 1;
  height: 500px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* WhatsApp CTA */
.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  padding: 15px 20px;
  background: #25D366; /* WhatsApp Green */
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  border: none;
  cursor: pointer;
}

.whatsapp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column-reverse;
  }
  .contact-3d-visual {
    width: 100%;
    height: 300px;
  }
  .contact-form {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 30px 20px;
  }

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

  .form-input {
    padding: 12px 15px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  #contact {
    padding: 60px 5%;
  }

  .contact-container {
    gap: 30px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .whatsapp-cta {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
}