@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: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── WHY WE ARE HERE ── */
#why-here {
  background: var(--white);
  padding: 5rem 0;
  color: var(--dark-text);
  text-align: start;
}
.why-here-label {
  color: var(--grey-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
#why-here h2 {
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.4rem;
  text-align: start;
}
.why-here-body {
  font-size: .8rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
  line-height: 1.85;
}
.why-here-img {
  width: 100%;
  max-width: 400px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ── COMMITMENT ── */
#commitment {
  background: var(--navy);
  padding: 5rem 0;
  text-align: start;
}
.commitment-img {
  width: 100%;
  max-width: 400px;
  object-fit: contain;
  display: block;
  border-radius: 1rem;
  margin: 0 auto 2rem auto;
}
.commitment-label {
  color: var(--grey-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
#commitment h2 {
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1.2rem;
}
.commitment-body {
  font-size: .8rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
  font-weight: 300;
  max-width: 900px;
  display: flex;
  gap: 1rem;
}
.accent {
  background-color: var(--accent);
  min-width: 2px;
}

/* ── ADVANTAGE ── */
#advantage {
  background: var(--white);
  padding: 5rem 0;
}
.advantage-label {
  color: var(--grey-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
#advantage h2 {
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--dark-text);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.advantage-subheading {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 1.2rem;
}
.advantage-body {
  font-size: .8rem;
  text-align: justify;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.advantage-img {
  max-width: 480px;
  object-fit: contain;
  border-radius: 1rem;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  #why-here { padding: 4rem 0; }
  #commitment { padding: 4rem 0; }
  .commitment-img {display: none;}
  #advantage { padding: 4rem 0; }
  #advantage .p-3 {display: none;}
}
@media (max-width: 575.98px) {
  #why-here { padding: 3rem 0; }
  #commitment { padding: 3rem 0; }
  #advantage { padding: 3rem 1rem; }
  .advantage-img {
    max-width: 100%;
    margin: 0;
  }
}
