/* ═══════════════════════════════════════
   CONTACT.CSS — HMC GROUP
═══════════════════════════════════════ */

/* ── PAGE HEADER ── */
.page-header {
  margin-top: 88px;
  height: 280px;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,32,88,0.72) 0%, rgba(8,40,120,0.45) 100%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 3;
  animation: fadeUp 0.9s ease both;
}

.page-header-h1 {
  font-size: 46px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.page-header-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.7;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 96px 80px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

/* دوائر الباكقراوند — نفس الستايل المعتمد */
.contact-bg-c1 {
  position: absolute;
  width: 400px; height: 400px;
  border: 50px solid rgba(8,40,120,0.03);
  border-radius: 50%;
  top: -100px; right: -80px;
  pointer-events: none;
  z-index: 0;
}

.contact-bg-c2 {
  position: absolute;
  width: 240px; height: 240px;
  border: 40px solid rgba(216,160,48,0.04);
  border-radius: 50%;
  bottom: -60px; right: 120px;
  pointer-events: none;
  z-index: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  position: relative;
  z-index: 1;
}

/* ── CONTACT INFO ── */
.contact-info .section-h2 { margin-bottom: 32px; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: default;
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.contact-card:hover .contact-card-icon { background: var(--gold); }

.contact-card-icon svg {
  width: 20px; height: 20px;
  stroke: var(--white);
}

.contact-card-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.contact-card-text {
  font-size: 14px;
  color: var(--near-black);
  line-height: 1.7;
}

.contact-card-text a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card-text a:hover { color: var(--gold); }

/* ── CONTACT FORM — بدون كارد ── */
.contact-form-wrap {
  display: flex;
  flex-direction: column;
}

.contact-form { padding: 0; }

.form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--near-black);
  outline: none;
  transition: all 0.25s ease;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0,0,0,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(8,40,120,0.08);
}

.form-group textarea { resize: vertical; }

.form-submit {
  width: auto;
  padding: 13px 40px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.form-submit:hover {
  background: #0a3296;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── MAP ── */
.map-section {
  height: 420px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}