/* sections.css - one block per homepage section pattern */

/* Steps ---------------------------------------------------------- */
.step {
  position: relative;
  padding: var(--pad-card);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step__num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: var(--fs-num-md);
  font-weight: var(--w-h1);
}

.step__title { margin-bottom: 8px; }
.step p { font-size: 18px !important; color: var(--ink) !important; }

/* Deal band ------------------------------------------------------ */

/* Rates ---------------------------------------------------------- */
.rate {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--pad-card);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rate--popular { border-color: var(--green); box-shadow: var(--shadow-lift); }

.rate__flag {
  position: absolute;
  top: -13px;
  left: var(--pad-card);
  margin: 0;
  padding: 4px 12px;
  background: var(--green);
  color: var(--white);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: var(--fs-micro);
  font-weight: var(--w-ui);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rate__name { margin-bottom: 12px; }

.rate__price { margin-bottom: 14px; }

.rate__amount {
  font-family: var(--font-display);
  font-size: var(--fs-num-xl);
  font-weight: var(--w-h1);
  line-height: 1;
  color: var(--blue);
}

.rate__unit {
  margin-left: 6px;
  font-size: 18px;
  letter-spacing: .01em;
  color: var(--muted);
}

.rate__meta {
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.rate__meta li {
  padding: 3px 0 3px 20px;
  position: relative;
  font-size: 18px !important;
  color: var(--ink) !important;
}
.rate__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.rate__note {
  flex: 1 1 auto;
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--ink);
}

/* Handover cards -------------------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }

.card__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__body { flex: 1 1 auto; padding: 15px 20px; }
.card__title { margin-bottom: 8px; }
.card__body p { font-size: var(--fs-body); color: var(--ink); }

/* Island tiles ---------------------------------------------------- */
.tile {
  padding: var(--pad-card);
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--blue);
  box-shadow: var(--shadow);
}
.tile:nth-child(even) { border-top-color: var(--green); }
.tile__title { margin-bottom: 8px; }
.tile p { font-size: 18px !important; color: var(--ink) !important; }

/* Gallery --------------------------------------------------------- */
.gallery__item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery__item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }

/* Review band ----------------------------------------------------- */
.review {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.review__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.review__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.review__figure img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

/* FAQ ------------------------------------------------------------- */
.faq {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: var(--w-ui);
  color: var(--ink);
  cursor: pointer;
}

.faq__q::after {
  content: "";
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(45deg) translateY(-3px);
  transition: transform .25s var(--ease);
}

.faq__q[aria-expanded="true"] { color: var(--blue-dark); }
.faq__q[aria-expanded="true"]::after { transform: rotate(225deg) translateY(-3px); }

.faq__a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease), padding .3s var(--ease);
}

.faq__a.is-open { padding: 0 22px 20px; max-height: 460px; }
.faq__a p { color: var(--ink); font-size: var(--fs-body); }

/* Final CTA ------------------------------------------------------- */
.cta { text-align: center; max-width: 780px; margin: 0 auto; }

.cta__title {
  font-size: var(--fs-h4);
  color: var(--white);
  margin: 0 auto 14px;
  max-width: 100%;
}

.cta__sub {
  max-width: 100%;
  margin: 0 auto 30px;
  font-size: var(--fs-body);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}



.optioncards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .optioncards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .optioncards {
    grid-template-columns: 1fr;
  }
}

.optioncard {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 28px 24px;
}

.optioncard__title {
  margin: 0 0 8px;
  font-weight: 600;
}

.optioncard p {
  margin: 0;
  line-height: 1.5;
}