/* ================================
   VALSTOM CONTACT SECTION
================================ */
.val-contact-section {
  padding: 56px 0;
  background: #f3f4f6; /* like screenshot */
  font-family: inherit;
}

/* Heading */
.val-contact-head {
  margin-bottom: 28px;
}
.val-contact-title {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 24px;
  color: #111;
}
.val-contact-sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.78);
  max-width: 820px;
}

/* Form card */
.val-contact-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 26px 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Accent gradient line */
.val-contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    #70114e 400%,
    #70114e 100%,
    #70114e 100%
  );
}

/* Inputs */
.val-input {
  border-radius: 10px !important;
  padding: 14px 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.val-input:focus {
  border-color: #70114e;
  /* box-shadow: 0 0 0 5px rgba(123,47,247,0.14); */
}

/* Button */
.val-btn-send {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  margin-top: 6px;

  font-weight: 400;
  font-size: 15px;

  color: #fff;
  background: linear-gradient(to left, #70114e 400%, #70114e 10%, #70114e 100%);
  /* box-shadow: 0 14px 28px rgba(123,47,247,0.18); */
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.val-btn-send:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 20px 42px rgba(123,47,247,0.24); */
}

.val-btn-send:active {
  /* transform: translateY(0); */
}

/* ===========================
   RIGHT CONTACT INFO 
=========================== */

.val-contact-info {
  padding: 0;
}

/* Premium card */
.val-contact-info-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
}

/* Gradient glow + accent */
.val-contact-info-card::before {
  content: "";
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(circle at 20% 20%, #70114e, transparent 46%),
    radial-gradient(circle at 80% 30%, #70114e, transparent 40%);
  opacity: 0.6;
  pointer-events: none;
}

.val-contact-info-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #70114e, #70114e, #70114e);
}

.val-contact-info-card > * {
  position: relative;
  z-index: 2;
}

/* Title */
.val-info-title {
  font-size: 26px;
  font-weight: 950;
  margin: 0 0 8px;
  letter-spacing: -0.4px;
  color: #111;
}

.val-info-sub {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(17, 17, 17, 0.7);
}

/* Info list */
.val-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 20px;
}

/* Each row */
.val-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  font-weight: 400;
  font-size: 16px;
  color: rgba(17, 17, 17, 0.88);
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

/* Icon (premium gradient pill) */
.val-info-item i {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(
    to right,
    #70114e 400%,
    #70114e 100%,
    #70114e 100%
  );
  /* box-shadow: 0 16px 30px rgba(123,47,247,.20); */
  flex: 0 0 auto;
}

/* Hover → premium micro interaction */
.val-info-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
}

/* Address block */
.val-address {
  display: flex;
  gap: 14px;
  padding: 18px 16px;
  margin-top: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.val-address-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(
    to right,
    #70114e 400%,
    #70114e 100%,
    #70114e 100%
  );
  /* box-shadow: 0 16px 32px rgba(123,47,247,.22); */
}

.val-address-text {
  font-size: 14.9px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(17, 17, 17, 0.82);
}

/* Small screen adjustments */
@media (max-width: 576px) {
  .val-contact-info-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .val-info-title {
    font-size: 22px;
  }

  .val-info-item {
    font-size: 15px;
    padding: 11px 12px;
  }

  .val-info-item i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .val-info-item {
    transition: none !important;
  }
}

/* ===========================
   LOCATION / MAP (PRO)
=========================== */

.val-mapbox {
  margin-top: 18px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Premium gradient border frame */
.val-mapbox::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    rgba(123, 47, 247, 0.55),
    rgba(255, 46, 147, 0.5)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* subtle glow */
.val-mapbox::after {
  content: "";
  position: absolute;
  inset: -60px;
  /* background: radial-gradient(circle at 30% 15%, rgba(123,47,247,0.18), transparent 60%); */
  opacity: 0.55;
  pointer-events: none;
}

/* Hover lift */
.val-mapbox:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

/* Header (Location title row) */
.val-map-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 14px 16px;
  font-weight: 950;
  font-size: 14px;
  letter-spacing: 0.35px;
  text-transform: uppercase;

  color: rgba(17, 17, 17, 0.88);
  /* background: linear-gradient(
    90deg,
    rgba(123,47,247,0.12),
    rgba(255,46,147,0.08)
  );
  border-bottom: 1px solid rgba(0,0,0,0.08); */
}

/* Optional icon before title */
.val-map-title::before {
  font-size: 15px;
  margin-right: 6px;
}

/* Map iframe */
.val-mapbox iframe {
  width: 100%;
  height: 235px;
  border: 0;
  display: block;
  filter: saturate(1.08) contrast(1.02);
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .val-mapbox iframe {
    height: 200px;
  }
}

.val-map-image-wrapper {
  position: relative;
  width: 100%;
}

.val-map-image {
  width: 100%;
  display: block;
}

/* Pin UI */
.val-map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 6px 12px;
  border-radius: 999px;
  background: #70114e;
  color: #fff;

  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;

  box-shadow: 0 14px 32px rgba(112, 17, 79, 0.151);
  transition: transform 0.2s ease;
}

.val-map-pin i {
  font-size: 15px;
}

.val-map-pin:hover {
  transform: translate(-50%, -108%);
}

.val-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100000;
}

.val-modal.show {
  opacity: 1;
  visibility: visible;
}

.val-modal-content {
  background: #ffffff;
  padding: 40px;
  width: 90%;
  max-width: 420px;
  border-radius: 8px;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  font-family: "Raleway", sans-serif;
}

.val-modal.show .val-modal-content {
  transform: translateY(0);
}

.val-modal-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #70114e;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.val-modal h3 {
  margin-bottom: 10px;
  font-weight: 700;
}

.val-modal p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.val-modal button {
  background: #70114e;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.val-modal button:hover {
  background: #520c3a;
}
