/* ===== CONTACT HERO ===== */
.contact-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #0b4ff5, #42a5ff);
  color: #fff;
}
.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 16px;
}
.contact-hero h1 span {
  color: #7de3ff;
}
.contact-hero p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 60px 20px;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-form, .contact-info {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.contact-form h2, .contact-info h2 {
  font-family: 'Playfair Display', serif;
  color: #05258f;
  margin-bottom: 20px;
}
.contact-form .form-group {
  margin-bottom: 18px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  resize: none;
}
.send-btn {
  background: #0b4ff5;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}
.send-btn:hover {
  background: #05258f;
}
.contact-info .info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-info .info-item i {
  font-size: 24px;
  color: #0b4ff5;
}
.contact-info h4 {
  margin-bottom: 4px;
  font-size: 15px;
}
.contact-info p, .contact-info a {
  font-size: 14px;
  color: #05258f;
  text-decoration: none;
}
.contact-info a:hover {
  color: #0b4ff5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-hero {
    padding: 40px 15px;
  }
}
@media (max-width: 640px) {
  .contact-hero h1 {
    font-size: 28px;
  }
  .contact-hero p {
    font-size: 14px;
  }
  .send-btn {
    width: 100%;
  }
}
