@import url('root-styles.css');
@import url('navbar.css');
@import url('footer.css');

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--main-font);
  color: #222;
  overflow-x: hidden;
  margin: 0;
}

#scrollTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0;
  transition: background .3s ease, transform .2s ease, opacity .3s ease;
}
#scrollTop.show { display: flex; opacity: 1; }
#scrollTop:hover { background: var(--grey); transform: translateY(-2px); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── JOIN US HERO ── */
#join-us-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2d5a8c 100%);
  padding: 5rem 0;
  color: var(--white);
  text-align: start;
  min-height: max-content;
  display: flex;
  align-items: center;
}

.join-us-content {
  flex: 1;
  padding: 2rem !important;
}

.join-us-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--grey-accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.join-us-title {
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.join-us-body {
  font-size: .8rem;
  line-height: 1.7;
  color: #d4dce5;
  margin-bottom: 1rem;
  text-align: justify;
}

.join-us-body em {
  color: var(--accent);
  font-style: italic;
}

/* Contact Information */
.join-us-contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 3px solid var(--accent);
}

.contact-note {
  font-size: 0.8rem;
  color: #d4dce5;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.contact-note::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--white);
}

.contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item span {
  word-break: break-word;
}

/* Image Styling */
.join-us-image {
  padding: 2rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-us-image img {
  aspect-ratio: 9/16;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  #join-us-hero {
    padding: 3rem 0;
    min-height: auto;
  }

  .join-us-content,
  .join-us-image {
    padding: 1.5rem !important;
  }

  .join-us-title {
    margin-bottom: 1rem;
  }

  .join-us-image img {
    max-width: 100%;
  }

  .contact-note::before {
    margin-right: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  #join-us-hero {
    padding: 2rem 0;
  }

  .join-us-content,
  .join-us-image {
    padding: 1rem !important;
  }

  .join-us-label {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .join-us-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .join-us-body {
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: start;
  }

  .join-us-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .contact-item {
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .contact-item i {
    font-size: 1rem;
  }
}
