.contactSection{
  width: 80%;
  margin: 0 auto;
  padding: 35px 0;
}

.contactHead{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 8px;
}

.contactTitle{
  font-size: 44px;
  font-weight: bold;
  color: var(--primary-color);
}

.contactSub{
  color: var(--primary-text);
  font-size: 16px;
  width: 75%;
  text-align: justify;
}

/* Quick cards */
.contactCards{
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contactCard{
  width: calc(100% / 4.25);
  min-height: 150px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  padding: 16px;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 12px;
}

.ccIcon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 113, 148, 0.10);
}

.ccIcon i{
  font-size: 26px;
  color: var(--primary-color);
}

.ccBody{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ccBody h3{
  font-size: 16px;
  color: var(--primary-color);
}

.ccValue{
  font-size: 14px;
  color: var(--primary-text);
}

.ccHint{
  font-size: 12px;
  color: #7a8086;
  margin-top: 2px;
}

.ccBtn{
  width: fit-content;
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  background: var(--primary-color);
  color: #fff;
  font-size: 13px;
  margin-top: 6px;
}

.ccLink{
  width: fit-content;
  color: var(--primary-color);
  font-size: 13px;
  margin-top: 6px;
}

.contactGrid{
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
}

.contactFormBox{
  width: 60%;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  padding: 18px;
}

.contactSide{
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sideCard{
  width: 100%;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.boxTitle{
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
}

.boxSub{
  color: var(--primary-text);
  font-size: 14px;
  margin-top: 6px;
}

.sideList{
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sideList li{
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 10px;
  color: var(--primary-text);
  font-size: 14px;
}

.sideList i{
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 2px;
}

.sideImage img{
  width: 100%;
  border-radius: 16px;
}

.sideBadge{
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(40, 113, 148, 0.18);
  color: var(--primary-color);
  border-radius: 14px;
  height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.contactForm{
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contactRow{
  width: 100%;
  display: flex;
  gap: 12px;
}

.contactField{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contactField label{
  font-size: 13px;
  color: #5b6268;
}

.contactInput,
.contactTextarea{
  width: 100%;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 12px 12px;
  font-family: 'shabnam';
  outline: none;
  transition: all 200ms ease-in-out;
}

.contactTextarea{
  resize: vertical;
  min-height: 130px;
}

.contactInput:focus,
.contactTextarea:focus{
  border-color: rgba(40, 113, 148, 0.55);
  box-shadow: rgba(40, 113, 148, 0.12) 0px 0px 0px 4px;
}

.contactActions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contactSubmit{
  height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--primary-color);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}

.contactNote{
  font-size: 12px;
  color: #7a8086;
}

.mapGrid{
  margin-top: 18px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
}

.mapCard{
  width: 60%;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  position: relative;
}

.mapImg{
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.mapOverlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.35), rgba(0,0,0,0.05));
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 14px;
}

.mapOverlayInner{
  height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.branches{
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.branch{
  border-radius: 18px;
  background: #ffffff;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  padding: 16px;
}

.branch h4{
  color: var(--primary-color);
  font-size: 16px;
  font-weight: bold;
}

.branch p{
  color: var(--primary-text);
  font-size: 14px;
  margin-top: 6px;
  text-align: justify;
}

.branchTag{
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(40, 113, 148, 0.10);
  color: var(--primary-color);
  font-size: 12px;
}

.socialRow{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.socialBtn{
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(40, 113, 148, 0.25);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  transition: all 200ms ease-in-out;
}

.socialBtn:hover{
  background: rgba(40, 113, 148, 0.08);
}

.contactToast{
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  background: #102c39;
  color: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 20px 40px -20px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 220ms ease-in-out;
  font-size: 13px;
}

.contactToast.show{
  opacity: 1;
  transform: translateY(0);
}

.supportTrackSec{
  padding-top: 20px;
  padding-bottom: 60px;
}

.supportGrid{
  width: 100%;
  margin-top: 18px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
}

.supportCard{
  width: 50%;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  padding: 18px;
  overflow: hidden;
}

.trackForm{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trackBtn{
  height: 52px;
  border-radius: 14px;
  background: var(--primary-color);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}

.trackResult{
  margin-top: 10px;
  border: 1px dashed rgba(40, 113, 148, 0.35);
  background: rgba(40, 113, 148, 0.06);
  border-radius: 16px;
  padding: 14px;
  display: none;
}

.trackLine{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(40, 113, 148, 0.12);
}

.trackLine:last-child{
  border-bottom: none;
}

.trackKey{
  color: #5b6268;
  font-size: 13px;
}

.trackVal{
  color: var(--primary-color);
  font-weight: bold;
  font-size: 13px;
}

.topicGrid{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topicBtn{
  width: calc(100% / 2.05);
  height: 52px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(40, 113, 148, 0.22);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  padding: 0 12px;
  transition: all 200ms ease-in-out;
}

.topicBtn i{
  font-size: 20px;
}

.topicBtn:hover{
  background: rgba(40, 113, 148, 0.08);
}

.topicBtn.active{
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.topicInfo{
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  padding: 14px;
}

.topicInfoHead{
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5b6268;
  font-size: 13px;
}

.topicInfoHead i{
  color: var(--primary-color);
  font-size: 18px;
}

.topicInfoValue{
  margin-top: 8px;
  color: var(--primary-color);
  font-weight: bold;
}

.topicHint{
  margin-top: 10px;
  font-size: 12px;
  color: #7a8086;
  line-height: 1.9;
}

.supportImage{
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.supportImage img{
  width: 100%;
  height: 160px;
  object-fit: cover;
}

@media (max-width: 992px){
  .supportGrid{
    flex-direction: column;
  }
  .supportCard{
    width: 100%;
  }
}

@media (max-width: 768px){
  .topicBtn{
    width: 100%;
  }
}

@media (max-width: 992px){
  .contactSection{ width: 100%; }

  .contactSub{ width: 100%; }

  .contactCard{ width: calc(100% / 2.1); }

  .contactGrid{ flex-direction: column; }
  .contactFormBox{ width: 100%; }
  .contactSide{ width: 100%; }

  .mapGrid{ flex-direction: column; }
  .mapCard{ width: 100%; }
  .branches{ width: 100%; }

  .contactTitle{ font-size: 32px; }
}

@media (max-width: 768px){
  .contactRow{ flex-direction: column; }

  .contactCard{ width: 100%; }

  .contactActions{
    flex-direction: column;
    align-items: stretch;
  }

  .contactSubmit{
    width: 100%;
    justify-content: center;
  }
}