/* BASE */
body {
  font-family: 'Poppins', sans-serif;
}

/* ================= HERO ================= */
.contact-hero {
  position: relative;
  height: 70vh;
  background: url("https://images.unsplash.com/photo-1497366216548-37526070297c")
              center/cover no-repeat;
  display: flex;
  align-items: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,0.7);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
}

.contact-hero p {
  color: #e5e7eb;
  font-size: 18px;
}

/* ================= INFO BOX ================= */
.contact-info-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  height: 100%;
  transition: transform 0.35s ease;
  text-align: center;
}

.contact-info-box:hover {
  transform: translateY(-8px);
}

.contact-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

/* ================= MAIN FORM CARD ================= */
.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.contact-card h3 {
  font-weight: 700;
}

/* INPUTS */
.contact-card .form-control {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.contact-card .form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 0.2rem rgba(37,99,235,0.2);
}

.form-label {
  font-weight: 600;
  font-size: 14px;
}

/* SUBMIT BUTTON */
.contact-card .btn-primary {
  background: #2563eb;
  border: none;
  padding: 14px;
  font-weight: 600;
  border-radius: 12px;
}

/* ================= SIDE CARD ================= */
.contact-side-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* ================= QUICK ACTIONS ================= */
.quick-action {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.quick-action i {
  font-size: 22px;
}

.quick-action.green {
  background: #ecfdf5;
  color: #065f46;
}

.quick-action.blue {
  background: #eff6ff;
  color: #1e40af;
}

.quick-action small {
  display: block;
  font-size: 13px;
  color: #475569;
}

/* ================= MAP ================= */
.map-section iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* ================= CTA ================= */
.contact-cta {
  background: linear-gradient(135deg,#020617,#0f172a);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .contact-card {
    padding: 25px;
  }

  .contact-hero {
    height: 60vh;
  }
}
