/* Hero Section */
.contact-hero {
  background: url("https://images.unsplash.com/photo-1531497865144-0464ef8fb9a9?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
  height: 45vh;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 36, 70, 0.55);
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 520px;
  margin-top: 10px;
}

/* Contact Section */
.contact-wrapper {
  display: flex;
  padding: 60px 8%;
  gap: 60px;
}

.contact-info {
  width: 40%;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  margin-top: 25px;
  gap: 15px;
}

.info-block i {
  font-size: 1.6rem;
  color: var(--primary);
}

.info-block h4 {
  margin-bottom: 3px;
  font-size: 1.1rem;
  font-weight: 600;
}

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  display: inline-block;
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff;
  margin-right: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.contact-form {
  width: 60%;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* Form */
form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

.form-group.full {
  width: 100%;
}

label {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
}

textarea {
  height: 140px;
  resize: none;
}

.submit-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
}

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

  .contact-info,
  .contact-form {
    width: 100%;
  }
}
