#nova-contact-section {
  width: 100%;
  background: #ffffff;
  padding: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

#nova-contact-section * {
  box-sizing: border-box;
}

.nova-contact-wrapper {
  width: 100%;
  min-height: 265px;
  display: grid;
  grid-template-columns: 0.9fr 1.45fr 1.35fr;
  border-top: 1px solid #e5eaf2;
  border-bottom: 1px solid #e5eaf2;
  box-shadow: 0 5px 18px rgba(0, 40, 100, 0.06);
}

.nova-contact-info {
  background: linear-gradient(135deg, #061a31 0%, #062b55 100%);
  color: #ffffff;
  padding: 34px 38px;
}

.nova-contact-info h3,
.nova-advisers-area h3,
.nova-location-title h3 {
  margin: 0 0 24px;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: 0.2px;
}

.nova-contact-info h3 {
  color: #ffffff;
}

.nova-contact-item {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.nova-contact-item span {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.nova-contact-item p,
.nova-contact-item a {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}

.nova-contact-item a:hover {
  text-decoration: underline;
}

.nova-advisers-area {
  background: #ffffff;
  padding: 26px 42px;
  border-right: 1px solid #e5eaf2;
}

.nova-advisers-area h3,
.nova-location-title h3 {
  color: #042088;
}

.nova-advisers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.nova-adviser-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: center;
  padding: 17px 0;
}

.nova-adviser-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #edf3fa;
  box-shadow: 0 8px 20px rgba(0, 40, 100, 0.12);
}

.nova-adviser-data h4 {
  margin: 0 0 3px;
  color: #062b55;
  font-size: 17px;
  font-weight: 750;
}

.nova-adviser-data small {
  display: block;
  color: #4b5563;
  font-size: 14px;
  font-weight: 580;
  margin-bottom: 10px;
}

.nova-whatsapp-link,
.nova-email-link {
  display: block;
  color: #010118;
  text-decoration: none;
  font-size: 13.6px;
  font-weight: 550;
  margin-bottom: 17px;
}

.nova-whatsapp-link:hover,
.nova-email-link:hover {
  color: #004795;
}

.nova-linkedin-link {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a66c2;
  color: #ffffff;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  margin-top: 2px;
}

.nova-location-area {
  background: #ffffff;
  padding: 34px 38px;
  position: relative;
}

.nova-location-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nova-location-title span {
  color: #1d1d1f;
  font-size: 34px;
  font-weight: 200;
  line-height: 1;
}

.nova-map-box {
  display: block;
  width: 102%;
  height: 194px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e4eaf3;
  text-decoration: none;
}

.nova-map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: 0.3s ease;
}

.nova-map-box:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.nova-floating-whatsapp {
  position: absolute;
  right: 36px;
  bottom: 24px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #20c45a;
  color: #ffffff;
  border: 5px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 28px rgba(0, 90, 40, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.nova-floating-whatsapp span {
  font-size: 39px;
  line-height: 1;
}

.nova-floating-whatsapp:hover {
  transform: scale(1.08);
  background: #18ad4c;
}

@media (max-width: 1150px) {
  .nova-contact-wrapper {
    grid-template-columns: 1fr;
  }

  .nova-contact-info,
  .nova-advisers-area,
  .nova-location-area {
    padding: 32px 25px;
  }

  .nova-advisers-area {
    border-right: none;
    border-bottom: 1px solid #e5eaf2;
  }
}

@media (max-width: 700px) {
  .nova-advisers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nova-adviser-card {
    grid-template-columns: 76px 1fr;
    gap: 16px;
  }

  .nova-adviser-card img {
    width: 74px;
    height: 74px;
  }

  .nova-floating-whatsapp {
    width: 60px;
    height: 60px;
    right: 25px;
    bottom: 20px;
  }

  .nova-floating-whatsapp span {
    font-size: 31px;
  }
}

.nova-adviser-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 6px;
}

.nova-adviser-phone span {
  color: #1b1b1d;
  font-size: 16.9px;
  font-weight: 600;
}

.nova-adviser-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 8px 0 8px;
}

.nova-adviser-phone span {
  color: #1b1b1d;
  font-size: 12.5px;
  font-weight: 700;
}

.nova-adviser-phone a {
  display: inline-block;
  background: #21b85b;
  color: #ffffff;
  padding: 7px 13px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.nova-adviser-phone a:hover {
  background: #179b49;
  transform: translateY(-1px);
}