/* ============================================================
   ABOUT PAGE – Clean Layout (No Conflicts, No Overlaps)
   ============================================================ */

/* ===== PAGE BANNER (HERO) ===== */
/* Display is controlled by .desktop-banner / .mobile-banner classes */
.inner-page-hero .hero-banner {
  width: 100% !important;
  height: 100% !important;
}

/* Desktop: show desktop-banner, hide mobile-banner */
.inner-page-hero .desktop-banner {
  display: block;
}

.inner-page-hero .mobile-banner {
  display: none;
}

.inner-page-hero {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background: linear-gradient(
    to right,
    #b48c36 0%,
    #ebd197 25%,
    #d6ad4b 50%,
    #ebd197 75%,
    #b48c36 100%
  );
  z-index: 5;
}

/* ===== ABOUT MAIN SECTION ===== */
/* Single unified rule — no duplicate selectors */
.about-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 40px 0 0;   /* Clean top spacing */
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff;
  text-align: center;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.about-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}

.about-section-desktop-banner {
  display: block;
  width: 100%;
  height: auto;
}

.about-section-mobile-banner {
  display: none !important;
}

/* ===== TEXT BLOCK ===== */
.about-text {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 40px 100px; /* Increased breathing space before the large image */
  position: relative;
}

.about-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.1px;
}

/* ===== SECOND SECTION BANNER ===== */
.about-image {
  width: 100vw;
  min-height: 90vh;

  /* FORCE full-bleed layout */
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  /* REMOVE any spacing */
  margin: 0;
  padding: 0;

  overflow: hidden;
}

/* Desktop image fill */
.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== FEATURES ICONS GRID ===== */
.about-features-icons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 70px; /* Clear top gap above, clear bottom */
  background: #fff;
}

.feature-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

/* Vertical Separator */
.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #ccc;
}

.feature-item i {
  font-size: 36px;
  color: #b28822;
  margin-bottom: 16px;
  display: block;
}

.feature-item h3 {
  font-family: 'Adero', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 768px) {

  .about-section {
    padding-top: 20px;
  }

  .about-text {
    padding: 20px 15px 30px;
  }

  .about-text p {
    font-size: 15px;
  }

  /* Second banner — no crop, no overflow */
  .about-image {
    width: 100%;
    min-height: auto;
    left: auto;
    transform: none;
    padding: 0;
  }

  .about-section-desktop-banner {
    display: none !important;
  }

  .about-section-mobile-banner {
    display: block !important;
  }

  .about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .about-features-icons {
    flex-direction: column;
    gap: 30px;
  }

  .feature-item::after {
    display: none;
  }

  /* Hero banner switch: hide desktop, show mobile */
  .inner-page-hero .desktop-banner {
    display: none !important;
  }

  .inner-page-hero .mobile-banner {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}