/* LANDING PAGE  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: "Open Sans", sans-serif;
  background-color: #000;
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url("../images/landing-bg.jpg")
    center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.top-line {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 12px;
  background-color: #1e6bd6;
  z-index: 2;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin-top: 40px;
}

.logo-box {
  display: inline-block;
  padding: 18px 26px;
  margin-bottom: 40px;
}

.logo-box img {
  max-width: 380px;
  width: 100%;
}

.description {
  font-size: 18px !important;
  line-height: 1.75;
  color: #e6e6e6;
  max-width: 820px;
  margin: 0 auto 35px;
}

.divider {
  width: 100%;
  height: 3px;
  background-color: #1e6bd6;
  margin: 0 auto 45px;
}

.contact h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  letter-spacing: 2px;
  margin-bottom: 35px;
}

.office {
  margin-bottom: 35px;
}

.office h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.icon-box {
  width: 36px;
  height: 36px;
  background-color: #1e6bd6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  color: #ffffff !important;
  font-size: 0.9rem;
}

.contact-row a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.contact-row a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .description {
    font-size: 0.9rem;
  }

  .contact h2 {
    font-size: 1.8rem;
  }

  .logo-box {
    padding: 14px 18px;
  }
}

.contact-row.inline .icon-box + a + .icon-box {
  margin-left: 28px; /* adjust as needed */
}

/* BODY TEXT */
.description {
  font-size: 15px;
  line-height: 1.7;
  color: #e6e6e6;
}

/* CONTACT HEADER */
.contact h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

/* OFFICE TITLES */
.office h3 {
  font-size: 20px !important;
  font-weight: 600;
  margin-bottom: 16px;
}

/* EMAIL + PHONE TEXT */
.contact-row.inline a {
  font-size: 18px;
  font-weight: 600;
}

/* ICON SIZE */
.icon-box i {
  font-size: 14px;
}

/* @media (max-width: 576px) {
  .contact-row.inline {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .contact-row.inline > span.icon-box,
  .contact-row.inline > a {
    display: inline-flex;
    align-items: center;
  }

  .contact-row.inline > span.icon-box {
    margin-right: 8px;
  }

  .contact-row.inline .icon-box + a + .icon-box {
    margin-left: 0;
  }

  .contact-row.inline > a {
    width: auto;
  }

  .contact-row.inline {
    flex-wrap: wrap;
  }
} */

/* CONTACT ROW BASE (DESKTOP) */
.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 12px;
}

/* ICON + TEXT PAIR */
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ICON BOX */
.icon-box {
  width: 36px;
  height: 36px;
  background-color: #1e6bd6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  color: #ffffff;
  font-size: 14px;
}

/* LINKS */
.contact-row a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.contact-row a:hover {
  text-decoration: underline;
}

/* OFFICE SPACING */
.office {
  margin-bottom: 35px;
}

/* MOBILE FIX */
@media (max-width: 576px) {
  .contact-row.inline {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .contact-item {
    width: 260px;
    justify-content: flex-start;
  }
}


/* END LANDING PAGE  */
