/* ══════════════════════════════════════════
   ABOUT HERO SECTION
══════════════════════════════════════════ */
.about-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  padding: 94px var(--section-x);
  min-height: 400px;
  overflow: hidden;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-primary);
}

/* All direct children above overlay */
.about-hero > * {
  position: relative;
  z-index: 1;
}

.about-hero__heading {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  color: var(--color-bg);
  line-height: 1.15;
  margin: 0;
}

.about-hero__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 24px;
  margin: 0;
}

.about-hero__btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .about-hero__heading { font-size: 38px; }
}

@media (max-width: 767px) {
  .about-hero__heading { font-size: 28px; }
  .about-hero__btns { flex-direction: column; align-items: stretch; }
  .about-hero__btns .cta-banner__btn { justify-content: center; }
}

/* ══════════════════════════════════════════
   ABOUT — WHO WE ARE SECTION
══════════════════════════════════════════ */
.about-who-section {
  background-color: var(--color-white);
  padding: 80px var(--section-x);
  display: flex;
  justify-content: center;
}

.about-who-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.about-who-section__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.about-who-section__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-who-section__body p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .about-who-section__heading { font-size: 32px; }
}

@media (max-width: 767px) {
  .about-who-section__heading { font-size: 26px; }
  .about-who-section { text-align: left; }
  .about-who-section__inner { align-items: flex-start; }
}

/* ══════════════════════════════════════════
   ABOUT — EXPERTISE SECTION
══════════════════════════════════════════ */
.expertise-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px var(--section-x);
  background-color: #f3f5f7;
}

/* ── Header ── */
.expertise-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  text-align: center;
  width: 100%;
}

.expertise-section__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.expertise-section__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ── Two-col body ── */
.expertise-section__body {
  display: flex;
  align-items: center;
  gap: 100px;
  width: 100%;
}

/* Left image */
.expertise-section__img-wrap {
  flex-shrink: 0;
  width: 313px;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.expertise-section__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

/* Right cards stack */
.expertise-cards {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ── Expertise Card ── */
.expertise-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.expertise-card:hover {
    background-color: var(--color-primary);
}

.expertise-card:hover .expertise-card__title,
.expertise-card:hover .expertise-card__desc{
    color: var(--color-bg);
}

.expertise-card--dark  { background-color: var(--color-primary); }
.expertise-card--light { background-color: var(--color-white); }

/* Icon bubble */
.expertise-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #e3d3b2;
  border-radius: var(--radius-pill);
  padding: 18px;
  flex-shrink: 0;
}

.expertise-card__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

/* Text block */
.expertise-card__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.expertise-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-bg);
  line-height: 28px;
  margin: 0;
}

.expertise-card__title--gold { color: #c9a75c; }

.expertise-card__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-bg);
  line-height: 24px;
  margin: 0;
}

/* Light card text is dark */
.expertise-card--light .expertise-card__desc { color: var(--color-body); }

/* ── CTA Buttons ── */
.expertise-section__btns {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .expertise-section__body { gap: 48px; }
}

@media (max-width: 991px) {
  .expertise-section__body {
    flex-direction: column;
    gap: 32px;
  }
  .expertise-section__img-wrap {
    width: 100%;
    max-width: 380px;
    height: 300px;
    align-self: center;
  }
  .expertise-cards { gap: 24px; }
  .expertise-section__heading { font-size: 32px; }
}

@media (max-width: 767px) {
  .expertise-section__heading { font-size: 26px; }
  .expertise-section__btns { flex-direction: column; align-items: stretch; }
  .why-btn, .btn-view-all { justify-content: center; }
  .expertise-card { flex-direction: column; align-items: flex-start; }
}

.why-btn--gold {
  background-color: #c9a75c;
  color: var(--color-primary);
  border: none;
}

.why-btn img {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  display: inline-block;
}

.why-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  white-space: nowrap;
  transition: opacity .2s;
  cursor: pointer;
}

.why-btn:hover { opacity: .85; }

/* ══════════════════════════════════════════
   ABOUT — OUR APPROACH SECTION
══════════════════════════════════════════ */
.approach-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px var(--section-x);
  background-color: #f7f6f3;
}

/* ── Header ── */
.approach-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.approach-section__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.approach-section__heading--gold { color: #c9a75c; }

.approach-section__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ── Steps wrapper ── */
.approach-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

/* ── Step card — default (light) state ── */
.approach-step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  background-color: var(--color-white);
  transition: background-color 0.25s;
  cursor: default;
}

/* ── Icon bubble — default ── */
.approach-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  padding: 16px;
  background-color: #f3f5f7;
  transition: background-color 0.25s;
}

/* ── Text — default ── */
.approach-step__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.approach-step__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 28px;
  margin: 0;
  transition: color 0.25s;
}

.approach-step__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #0f2447;
  line-height: 24px;
  margin: 0;
  transition: color 0.25s;
}

/* ══ HOVER STATE ══ */
.approach-step:hover {
  background-color: var(--color-primary);
}

.approach-step:hover .approach-step__icon {
  background-color: #313a42;
}

.approach-step:hover .approach-step__title {
  color: var(--color-white);
}

.approach-step:hover .approach-step__desc {
  color: var(--color-white);
}


/* ── Gold connector line between steps ── */
.approach-connector {
  width: 2px;
  height: 32px;
  background-color: #c9a75c;
  margin-left: 55px;
  flex-shrink: 0;
}

/* ── CTA Buttons ── */
.approach-section__btns {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .approach-section__heading { font-size: 32px; }
}

@media (max-width: 767px) {
  .approach-section__heading { font-size: 26px; }
  .approach-section__btns { flex-direction: column; align-items: stretch; }
  .btn-view-all, .why-btn { justify-content: center; }
  .approach-connector { margin-left: 43px; }
  .approach-step { gap: 12px; }
  .approach-step__icon { width: 52px; height: 52px; padding: 12px; }
}
/* ══════════════════════════════════════════
   ABOUT — OUR VALUES SECTION
══════════════════════════════════════════ */
.values-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px var(--section-x);
  background-color: var(--color-bg);
}

/* ── Header ── */
.values-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.values-section__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.values-section__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
  max-width: 860px;
}

/* ── Cards grid ── */
.values-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
}

/* ── Card — default state ── */
.values-card {
  background-color: var(--color-white);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: default;
}

/* ── Icon bubble — default ── */
.values-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-bg);
  flex-shrink: 0;
  transition: background-color 0.25s;
}

/* ── Text — default ── */
.values-card__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.values-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 26px;
  margin: 0;
}

.values-card__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ══ HOVER STATE ══ */
.values-card:hover {
  border-color: var(--color-primary);
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.08);
}

.values-card:hover .values-card__icon {
  background-color: var(--color-primary);
}
/* default: show gold, hide white */
.icon-hover { display: none; }
.icon-default { display: flex; }

/* hover: hide gold, show white */
.values-card:hover .icon-hover  { display: flex; }
.values-card:hover .icon-default { display: none; }

.values-card:hover .values-card__icon {
  background-color: var(--color-primary);
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .values-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .values-section__heading { font-size: 28px; }
  .values-cards { grid-template-columns: 1fr; gap: 16px; }
}

/* ══════════════════════════════════════════
   ABOUT — IMAGE PAIR SECTION
══════════════════════════════════════════ */
.about-img-pair {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 80px var(--section-x);
  background-color: var(--color-white);
  justify-content: center;
}

.about-img-pair__card {
  flex: 1;
  min-width: 0;
  height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-img-pair__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-pair__card--shadow {
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.08);
}

.about-img-pair__card--border {
  border: 1.5px solid #e6e1f7;
  box-shadow: 0px 3px 50px 0px rgba(0, 0, 0, 0.08);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .about-img-pair {
    flex-direction: column;
  }

  .about-img-pair__card {
    width: 100%;
    height: 260px;
  }
}