.contact--v2{
  position: relative;
  overflow: hidden;
  background: transparent;
}

.contact_section{
  /* padding-top: clamp(26px, 4vw, 64px) !important;
  padding-bottom: clamp(26px, 4vw, 64px) !important; */
  padding: 85px 60px !important;
}

/* background blobs */
.contact--v2::before{
  content:"";
  position:absolute;
  inset:-220px -180px auto auto;
  width:520px;
  height:520px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(4,163,154,0.20), transparent 60%);
  filter: blur(2px);
  opacity: .9;
  pointer-events:none;
  z-index:0;
}
.contact--v2::after{
  content:"";
  position:absolute;
  inset:auto auto -220px -180px;
  width:520px;
  height:520px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(0,132,255,0.18), transparent 60%);
  filter: blur(2px);
  opacity: .8;
  pointer-events:none;
  z-index:0;
}

/* ✅ FIX: Top cards row ko full width feel do (right-side extra gap remove) */
.contact__topRow{
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
}

/* TOP CARDS */
.contact__topCard{
  position: relative;
  height: 100%;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 45px rgba(2, 20, 18, 0.08);

  /* ✅ reduced padding for less height */
  padding: 14px 16px;

  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  z-index: 1;
  overflow: hidden;
}

.contact__topCard::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(4,163,154,0.12), rgba(0,132,255,0.10));
  opacity: 0;
  transition: .25s ease;
}

.contact__topCard:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(2, 20, 18, 0.12);
  border-color: rgba(4,163,154,0.30);
}

.contact__topCard:hover::before{
  opacity: 1;
}

.contact__topIcon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(4,163,154,0.12);
  color: var(--secondary-color);
  flex: 0 0 auto;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

.contact__topText{
  position: relative;
  z-index: 2;
}

/* .contact__topText h6{
  margin: 0 0 2px;
  font-weight: 900;
  color: rgba(0,0,0,0.82);
  letter-spacing: -0.01em;
} */

.contact__topText p{
  margin: 0;
  color: rgba(0,0,0,0.60);
  font-weight: 650;
  word-break: break-word;
}

/* link style */
.contact__link{
  color: rgba(0,0,0,0.68);
  text-decoration: none;
  font-weight: 700;
}
.contact__link:hover{
  color: var(--secondary-color);
  text-decoration: underline;
}

/* locations list compact */
.contact__locations{
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  /* display: flex; */
  gap: 3px;
}

.contact__locations li{
  /* display: flex; */
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(0,0,0,0.58);
  font-weight: 600;
}

.contact__locations i{
  margin-top: 2px;
  color: rgba(0,132,255,0.75);
}

.contact__panelWrap{
  position: relative;
  z-index: 1;
}

/* Map */
.map--v2{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 22px 55px rgba(2, 20, 18, 0.10);
  min-height: 540px;
}

.map--v2 iframe{
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

/* Form card */
.contact__formCard{
  height: 100%;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 22px 55px rgba(2, 20, 18, 0.10);
  padding: clamp(18px, 2.2vw, 28px);
  position: relative;
  overflow: hidden;
}

.contact__formCard::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 20% 10%, rgba(4,163,154,0.12), transparent 45%),
              radial-gradient(circle at 85% 15%, rgba(0,132,255,0.10), transparent 40%);
  opacity: .8;
  pointer-events:none;
}

.contact__heading{
  position: relative;
  z-index: 1;
}

.contact__heading p{
  margin: 0 0 10px;
  color: rgba(0,0,0,0.60);
  font-weight: 500;
}

.contact__form{
  position: relative;
  z-index: 1;
}

.contact__form .form-control{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  padding: 12px 14px;
  background: rgba(255,255,255,0.90);
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

.contact__form .form-control:focus{
  border-color: rgba(4,163,154,0.55);
  box-shadow: 0 0 0 4px rgba(4,163,154,0.14);
  transform: translateY(-1px);
}

.contact__form textarea.form-control{
  min-height: 230px;
  resize: vertical;
}

@media (max-width: 991px){
  .map--v2, .map--v2 iframe{
    min-height: 380px;
  }
  .contact__topIcon{
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .contact_section{
    padding: 85px 25px !important;
  }

  /* mobile me row full width feel */
  .contact__topRow{
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 575px){
  .contact__topCard{
    padding: 14px;
  }
  .contact__form textarea.form-control{
    min-height: 190px;
  }
}
