@import url("countries.css");
@import url("style.css");

a {
    text-decoration: none;
    color: black;
}

.contact-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: rgba(0, 102, 214, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.contact-details-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 102, 214, 0.08);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 16px 36px rgba(15, 63, 110, 0.08);
}

.contact-details-card .contact-item:last-child {
  margin-bottom: 0;
}

.map-wrapper {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(15, 63, 110, 0.12);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  width: 100%;
}

@media (max-width: 991px) {
  .contact-details-card {
    padding: 32px;
  }

  .map-wrapper iframe {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .contact-details-card {
    padding: 24px;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}


/* Office Locations Grid */
.support-path{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:30px;
    margin-top:60px;
    align-items:stretch;
}

.support-path-intro{
    grid-column:1/-1;
    text-align:center;
    margin-bottom:10px;
}

.support-step{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;
    padding:30px 25px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s ease;
    height:100%;
}

.support-step:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.support-step i{
    font-size:30px;
    color:var(--primary);
    margin-bottom:18px;
}

.support-step h5{
    margin-bottom:12px;
    font-weight:700;
}

.support-step p{
    margin:0;
    color:#666;
    line-height:1.7;
}