/* ========================
   Contact Section
========================= */
.contact-section {
  padding: 100px 15%;
  background-color: #f8fafc; /* Light background for the whole section */
}

.contact-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-info p {
  color: #64748b;
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.icon-box.blue-icon {
  width: 48px;
  height: 48px;
  background-color: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.info-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 16px;
  margin-bottom: 0;
}

/* Contact Form */
.contact-form-container {
  flex: 1;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #f1f5f9; /* Light grey input background */
  font-family: inherit;
  font-size: 15px;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  background-color: #ffffff;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.submit-btn:hover {
  background-color: #1d4ed8;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 60px;
  }
}