.contact-page{
  margin-top: 80px;
}

.contact-hero {
  text-align: center;
  /* padding: 80px 20px 40px; */
}

.contact-hero h2 {
  font-size: 44px;
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-hero p {
  color: #000000;
  font-size: 18px;
}

/* OPTIONS */
.contact-options {
  max-width: 1240px;
  margin: auto;
  padding: 40px 20px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-img {
  width: 100%;
  aspect-ratio: 16 / 9;   
  overflow: hidden;
}

.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
};

/* .contact-card h3 {
 background: linear-gradient(90.49deg, #0088FF 2.97%, #603CFF 99.75%);
  font-size: 24px;
  font-weight: 500;
} */

.contact-card p {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
}

.contact-card a {
  margin-top: 10px;
  background: linear-gradient(90.49deg, #0088FF 2.97%, #603CFF 99.75%);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  border: none;
  /* padding: 10px 16px; */
  border-radius: 5px;
  cursor: pointer;
  width: fit-content;
  padding: 8px 12px;
  text-decoration: none;
}

.offices {
  background: #fff;
  padding: 20px 40px;
}

.offices h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 700;
  color:#1F2937;
}

.subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
}
.country-select {
  position: relative;
  margin-bottom: 15px;
      box-shadow: 0px 2px 2px 0px #4B556314, 0px 1px 2px 0px #4B55631A;
      border-radius: 8px;
}

.country-select .selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.country-img {
  display: flex;
  align-items: center;
  gap: 8px;
}

.country-img img {
  width: 22px;
  height: 16px;
  object-fit: cover;
}

.arrow {
  font-size: 12px;
}

.country-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  z-index: 9;
}

.country-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
}

.country-list li:hover {
  background: #f2f2f2;
}

.country-list img {
  width: 22px;
  height: 16px;
}

/* GRID */

.office-grid {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* CARD */
.office-card {
  border-radius: 14px;
  padding: 20px;
  background: #f5f5f5;
 box-shadow: 0px 1px 2px 0px #0000000D;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.office-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.office-header h4{
  font-size: 18px;
  font-weight: 600;
 color: #111827;
 margin-bottom: 0;
}

.office-header img {
  width: 34px;
}

.office-card p {
  font-size: 14px;
  color: #374151;
  font-weight: 400;
  line-height: 1.5;
}

/* CONTACT BOTTOM */
.office-contact {
  margin-top: 20px;
}

.office-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.office-contact img {
  width: 20px;
}
.office-contact span{
color: #111827;
font-size: 14px;
    font-weight: 600;

}


