/* Reset Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-section {
  padding: 60px 20px;
  background-color: #f7f9fc;
  font-family: 'Segoe UI', sans-serif;
}

.contact-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  flex-wrap: wrap;
}

/* Left Section */
.contact-left {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 40px;
}

.contact-left h1 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #111;
}

.contact-left h1 span {
  color: #007BFF;
}

.contact-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.contact-links p {
  font-size: 15px;
  color: #444;
  margin: 8px 0;
}

/* Right Section */
.contact-right {
  flex: 1;
  min-width: 300px;
  background-color: #e9f2ff;
  padding: 40px;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

input[type="text"],
input[type="email"],
textarea {
  flex: 1;
  padding: 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* GDPR */
.gdpr {
  font-size: 14px;
  color: #333;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.gdpr input[type="checkbox"] {
  margin-top: 4px;
  accent-color: #007BFF;
}

/* Button */
.submit-btn {
  padding: 14px;
  background-color: #007BFF;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #005ec9;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    padding: 30px 20px;
  }

  .contact-left h1 {
    font-size: 28px;
  }
}
