/* ════════════════════════════════════════
   CONTACT.CSS — Contact page only
   Let's Start Moving
════════════════════════════════════════ */

/* ── PAGE BANNER override for contact ── */
.page-banner {
  background:
    linear-gradient(rgba(12,12,12,.70), rgba(12,12,12,.70)),
    url('../images/lets-start-moving-07.jpg') center/cover no-repeat;
}

/* ── CONTACT CARDS STRIP ─────────────── */
.contact-strip { background: var(--light-bg); }
.contact-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  margin-top: -48px;
  position: relative;
  z-index: 10;
  background: #fff;
}
.contact-card {
  padding: 36px 28px;
  display: flex; align-items: flex-start; gap: 16px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.contact-card:last-child { border-right: none; }
.contact-card:hover { background: #fafafa; }
.contact-card-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--secondary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; color: #fff;
}
.contact-card-body h5 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted); margin-bottom: 6px;
}
.contact-card-body p,
.contact-card-body a {
  font-size: 14px; color: var(--dark); font-weight: 600;
  text-decoration: none; display: block; line-height: 1.6;
  transition: color .2s;
}
.contact-card-body a:hover { color: var(--secondary); }

/* ── MAIN CONTACT SECTION ────────────── */
.contact-main { padding: 96px 0 80px; background: #fff; }

/* Left column */
.contact-left-tag {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--secondary); display: block; margin-bottom: 10px;
}
.contact-left-head {
  font-size: 30px; font-weight: 800;
  color: var(--dark); letter-spacing: -0.4px;
  line-height: 1.2; margin-bottom: 14px;
}
.contact-left-body {
  font-size: 15px; color: var(--text);
  line-height: 1.78; margin-bottom: 28px;
}
.contact-divider {
  width: 44px; height: 3px;
  background: var(--secondary);
  border-radius: 2px; margin-bottom: 24px;
}

.contact-detail-list { list-style: none; padding: 0; margin-bottom: 30px; }
.contact-detail-list li {
  display: flex; align-items: flex-start;
  gap: 14px; margin-bottom: 16px;
}
.cdl-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--secondary);
}
.cdl-info strong {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .7px;
  color: var(--muted); margin-bottom: 3px;
}
.cdl-info a,
.cdl-info span {
  font-size: 14px; font-weight: 600;
  color: var(--dark); text-decoration: none;
  transition: color .2s;
}
.cdl-info a:hover { color: var(--secondary); }

.social-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted); margin-bottom: 10px; display: block;
}
.contact-social { display: flex; gap: 8px; }
.cs-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.cs-btn:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }

/* Right: Form card */
.contact-form-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
}
.contact-form-header {
  background: var(--primary);
  padding: 22px 28px; color: #fff;
}
.contact-form-header h4 {
  font-size: 18px; font-weight: 800;
  color: #fff; margin-bottom: 4px;
}
.contact-form-header p { font-size: 13px; opacity: .85; margin: 0; }

.contact-form-body { padding: 28px; }
.contact-form-body label {
  font-size: 11px; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: .6px; margin-bottom: 5px; display: block;
}
.contact-form-body .form-control {
  border: 1.5px solid var(--border);
  border-radius: 6px; font-size: 14px;
  font-family: 'Inter', sans-serif;
  padding: 10px 14px; color: var(--dark);
  transition: border-color .2s, box-shadow .2s;
}
.contact-form-body .form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255,90,9,.12);
  outline: none;
}
.contact-form-body textarea.form-control { resize: none; }

.btn-send {
  background: var(--primary); color: #fff;
  border: none; padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700;
  border-radius: 6px; cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-send:hover { background: #b00301; transform: translateY(-1px); }

/* ── MAP SECTION ─────────────────────── */
.map-section { line-height: 0; }
.map-section iframe {
  display: block; width: 100%; height: 460px;
  border: 0;
}
.map-label-bar {
  background: var(--dark); padding: 16px 0; text-align: center;
}
.map-label-bar p {
  font-size: 13px; color: #9ca3af; margin: 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.map-label-bar i { color: var(--secondary); }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 991px) {
  .contact-strip-inner {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }
  .contact-card { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-card:last-child { border-bottom: none; }
  .contact-main { padding: 64px 0; }
}
@media (max-width: 767px) {
  .contact-left-head { font-size: 24px; }
  .contact-form-body { padding: 20px; }
  .map-section iframe { height: 320px; }
}
