/* assets/css/ije-about.css */


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.ije-about-page {
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #fffdf8 0%,
      #ffffff 44%,
      #f8fbff 100%
    );

  color: var(--ije-text);
}


/* =========================================================
   HERO
   ========================================================= */

.ije-about-hero {
  position: relative;
  min-height: 430px;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: #fff;

  background-color: var(--ije-navy);
  background-image: var(--ije-about-hero-image);
  background-size: cover;
  background-position: center;
}

.ije-about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(
      circle at top left,
      rgba(0, 168, 232, .22),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(254, 209, 0, .10),
      transparent 25%
    ),
    linear-gradient(
      90deg,
      rgba(7, 24, 39, .90) 0%,
      rgba(7, 24, 39, .68) 52%,
      rgba(7, 24, 39, .34) 100%
    );
}

.ije-about-hero .container {
  position: relative;
  z-index: 2;

  text-align: center;
}

.ije-about-eyebrow,
.ije-section-kicker,
.ije-about-service-tag {
  display: inline-flex;
  align-items: center;

  gap: .42rem;

  border-radius: 999px;

  font-family: 'Poppins', system-ui, sans-serif;
  font-size: .88rem;
  font-weight: 800;
}

.ije-about-eyebrow {
  margin-bottom: 1rem;
  padding: .45rem .85rem;

  border: 1px solid rgba(255, 255, 255, .20);

  background: rgba(255, 255, 255, .12);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #fff;
}

.ije-about-hero h1 {
  max-width: 850px;

  margin: 0 auto .85rem;

  color: #fff;

  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 900;

  line-height: 1.05;
  letter-spacing: -.045em;
}

.ije-about-hero p {
  max-width: 760px;

  margin: 0 auto;

  color: rgba(255, 255, 255, .88);

  font-size: 1.1rem;
  line-height: 1.7;
}


/* =========================================================
   SHARED SECTIONS
   ========================================================= */

.ije-about-intro,
.ije-about-why,
.ije-about-services,
.ije-about-reviews {
  position: relative;
  overflow: hidden;

  padding: 4.25rem 0;
}


/* =========================================================
   INTRO
   Warm brand ambience
   ========================================================= */

.ije-about-intro {
  background:
    radial-gradient(
      circle at 7% 12%,
      rgba(254, 209, 0, .13),
      transparent 27%
    ),
    radial-gradient(
      circle at 95% 88%,
      rgba(0, 168, 232, .08),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #fffdf7 0%,
      #ffffff 100%
    );

  border-bottom:
    1px solid rgba(7, 24, 39, .05);
}


/* =========================================================
   WHY CHOOSE IJE
   Cool blue depth with restrained warmth
   ========================================================= */

.ije-about-why {
  background:
    radial-gradient(
      circle at 96% 10%,
      rgba(0, 168, 232, .075),
      transparent 29%
    ),
    radial-gradient(
      circle at 5% 92%,
      rgba(254, 209, 0, .09),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbff 100%
    );

  border-top:
    1px solid rgba(7, 24, 39, .045);

  border-bottom:
    1px solid rgba(7, 24, 39, .045);
}


/* =========================================================
   SERVICES
   Ambient transition through service cards
   ========================================================= */

.ije-about-services {
  background:
    radial-gradient(
      circle at 8% 16%,
      rgba(254, 209, 0, .10),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 84%,
      rgba(0, 168, 232, .075),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #ffffff 48%,
      #fffdf8 100%
    );
}


/* =========================================================
   REVIEWS
   Clean close with subtle ambient depth
   ========================================================= */

.ije-about-reviews {
  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(0, 168, 232, .065),
      transparent 27%
    ),
    radial-gradient(
      circle at 5% 92%,
      rgba(254, 209, 0, .075),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f9fbff 100%
    );

  border-top:
    1px solid rgba(7, 24, 39, .045);
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.ije-section-heading {
  max-width: 790px;

  margin: 0 auto 2rem;
}

.ije-section-kicker,
.ije-about-service-tag {
  margin-bottom: .8rem;
  padding: .38rem .78rem;

  background: var(--ije-sand);

  color: var(--ije-navy);
}

.ije-about-intro h2,
.ije-section-heading h2,
.ije-about-feature-card h3,
.ije-about-service-content h3 {
  color: var(--ije-navy);

  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 900;

  letter-spacing: -.035em;
}

.ije-about-intro h2,
.ije-section-heading h2 {
  margin-bottom: 1rem;

  font-size: clamp(2rem, 3vw, 3rem);

  line-height: 1.1;
}

.ije-about-intro p,
.ije-section-heading p,
.ije-about-feature-card p,
.ije-about-service-content p {
  color: var(--ije-muted);

  line-height: 1.72;
}


/* =========================================================
   INTRO IMAGE
   ========================================================= */

.ije-about-image-card {
  overflow: hidden;

  border: 1px solid rgba(7, 24, 39, .08);
  border-radius: 28px;

  box-shadow:
    0 18px 42px rgba(7, 24, 39, .10);
}

.ije-about-image-card img {
  width: 100%;
  height: 430px;

  display: block;

  object-fit: cover;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.ije-about-feature-card {
  height: 100%;

  padding: 1.45rem;

  border: 1px solid rgba(7, 24, 39, .08);
  border-radius: 22px;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #fbfcff
    );

  box-shadow:
    0 14px 34px rgba(7, 24, 39, .06);
}

.ije-about-feature-icon {
  width: 46px;
  height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1rem;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      var(--ije-yellow),
      var(--ije-orange)
    );

  color: var(--ije-navy);

  font-size: 1.25rem;
}

.ije-about-feature-card h3 {
  margin-bottom: .5rem;

  font-size: 1.1rem;
}

.ije-about-feature-card p {
  margin-bottom: 0;
}


/* =========================================================
   SERVICE LIST
   ========================================================= */

.ije-about-service-list {
  display: grid;

  gap: 2rem;
}

.ije-about-service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;

  gap: 0;

  overflow: hidden;

  border: 1px solid rgba(7, 24, 39, .08);
  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #fbfcff
    );

  box-shadow:
    0 18px 40px rgba(7, 24, 39, .075);
}

.ije-about-service-item.is-reverse .ije-about-service-media {
  order: 2;
}

.ije-about-service-item.is-reverse .ije-about-service-content {
  order: 1;
}

.ije-about-service-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;

  display: block;

  object-fit: cover;
}

.ije-about-service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 2rem;
}

.ije-about-service-content h3 {
  margin-bottom: .75rem;

  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.ije-about-btn {
  width: max-content;
  max-width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: .42rem;

  margin-top: .5rem;
  padding: .82rem 1.15rem;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      var(--ije-yellow),
      var(--ije-orange)
    );

  color: var(--ije-navy) !important;

  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 850;

  text-decoration: none;
}

.ije-about-btn:hover {
  transform: translateY(-1px);

  color: var(--ije-navy) !important;
}

.ije-about-btn.is-outline {
  border: 1px solid rgba(7, 24, 39, .09);

  background: #fff;

  color: var(--ije-navy) !important;
}

.ije-about-btn.is-outline:hover {
  background: var(--ije-sand);
}


/* =========================================================
   REVIEWS
   ========================================================= */

.ije-about-review-panel {
  max-width: 1050px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  margin: 0 auto;

  border: 1px solid rgba(7, 24, 39, .08);
  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #fbfcff
    );

  box-shadow:
    0 18px 40px rgba(7, 24, 39, .075);
}

.ije-about-review-image img {
  width: 100%;
  height: 360px;

  display: block;

  object-fit: cover;
}

.ije-about-review-widget {
  min-height: 360px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1.25rem;
}

.ije-about-review-widget img {
  max-width: 250px;
  height: auto;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
  .ije-about-intro,
  .ije-about-why,
  .ije-about-services,
  .ije-about-reviews {
    padding: 3.25rem 0;
  }

  .ije-about-service-item,
  .ije-about-review-panel {
    grid-template-columns: 1fr;
  }

  .ije-about-service-item.is-reverse .ije-about-service-media,
  .ije-about-service-item.is-reverse .ije-about-service-content {
    order: initial;
  }

  .ije-about-service-media img,
  .ije-about-review-image img {
    min-height: auto;
    height: 320px;
  }
}

@media (max-width: 575.98px) {
  .ije-about-hero {
    min-height: 390px;
  }

  .ije-about-image-card img,
  .ije-about-service-media img,
  .ije-about-review-image img {
    height: 260px;
  }

  .ije-about-service-content,
  .ije-about-feature-card {
    padding: 1.25rem;
  }

  .ije-about-btn {
    width: 100%;
  }
}
