/* -------------------------------------
   CONTACT PAGE — STYLE E
-------------------------------------- */

/* HERO */
.contact-hero {
  background:
    linear-gradient(135deg, rgba(0,119,255,0.55), rgba(0,201,167,0.55)),
    url('../img/contact-hero.jpg') center/cover no-repeat;
  padding: 90px 0;
  color: white;
}

.hero-center {
  text-align: center;
  max-width: 700px;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}


/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.contact-grid .card h3 {
  margin-bottom: 10px;
}


/* MAP */
.map-box iframe {
  border-radius: 14px;
}


/* FORM */
.form-card {
  max-width: 900px;
  margin: auto;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 12px 14px;
  background: white;
}

.contact-form textarea {
  margin-top: 10px;
}

.contact-form button {
  margin-top: 10px;
  width: 100%;
}


/* SOCIAL */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 18px;
  text-align: center;
}

.social-card {
  padding: 18px;
  font-weight: 700;
  font-size: 18px;
}


/* RESPONSIVE */
@media (max-width:680px){
  .contact-hero h1 { font-size: 30px; }
}