/* ---------------------------------------------------
   PINK THEME CONTACT PAGE – Singh Logistics
   (Matches services + gallery styling)
--------------------------------------------------- */

/* HERO */
.contact-hero {
  padding: 6rem 1rem 4rem;
  text-align: center;
  color: #fff;

  background:
    linear-gradient(135deg, #fa7a2a, #fa7a2a),
    url("https://source.unsplash.com/1600x500/?logistics,truck,freight") center/cover no-repeat;

  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, #fa7a2a, transparent 55%),
    radial-gradient(circle at bottom right,#fa7a2a, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-hero p {
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0.9rem auto 0;
}

/* SHELL */
.contact-shell {
  margin-top: -35px;
  padding-bottom: 3rem;
}

/* CARD */
.contact-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  border-radius: 1.75rem;
  padding: 2.5rem 2rem;

  border: 1px solid rgba(234, 88, 12, 0.9);
  box-shadow: 0 16px 45px rgba(255, 255, 255, 0.55);
}

/* Contact Items */
.contact-item {
  text-align: center;
  padding: 1.2rem 0.5rem;
}

.contact-icon {
  width: 65px;
  height: 65px;
  background: #05a0fa;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 0.9rem;
  font-size: 1.6rem;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.45);
}

.contact-item h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.contact-item a {
  text-decoration: none;
  color: #05a0fa;
  font-weight: 600;
}

.contact-item a:hover {
  color: #fa7a2a;
}

/* Divider */
.contact-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #05a0fa,
    transparent
  );
  margin: 2rem 0 2rem;
}

/* MAP */
.map-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(250, 250, 250, 0.55);
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* CTA BUTTON */
.btn-contact-primary {
  background: linear-gradient(135deg, #05a0fa, #05a0fa);
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.75);
  border: none;
  transition: 0.25s ease;
}

.btn-contact-primary:hover {
  box-shadow: 0 22px 55px #fffefe;
  color: #fa7a2a;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    padding-inline: 1.25rem;
  }
}
