body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  opacity: 1;
}

/* HERO */
.contact-hero {
  cursor: default;
  position: relative;
  height: 70vh;
  display: flex;
  padding-top: 96px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, #0A84FF 0%, #4fc3ff 50%, #e0f2ff 100%);
  overflow: hidden;
}

.contact-hero h1 {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
}

/* CARDS */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 80px auto;
  padding: 0 20px;
  max-width: 1100px;
}

.card {
  background: #fff;
  border: 1px solid rgba(10,132,255,0.15);
  border-radius: 14px;
  width: 320px;
  text-align: center;
  padding: 40px 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(10,132,255,0.15);
}

.card i {
  font-size: 40px;
  color: #0A84FF;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0A84FF;
}

.card p {
  font-size: 15px;
  color: #555;
}

/* FORM */
.contact-form {
  max-width: 700px;
  margin: 100px auto;
  padding: 0 20px;
}

.contact-form h2 {
  text-align: center;
  color: #0A84FF;
  font-size: 30px;
  margin-bottom: 40px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  color: #444;
}

input, select, textarea {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #0A84FF;
  box-shadow: 0 0 6px rgba(10,132,255,0.2);
}
