.lf-why-section{
  padding:90px 20px;
  background:var(--lf-dark);
  font-family:'Poppins',sans-serif;
}

.lf-why-header{
  max-width:700px;
  margin:0 auto 60px;
  text-align:center;
}

.lf-why-header h2{
  font-size:36px;
  font-weight:700;
  color:var(--lf-light);
  margin-bottom:14px;
}

.lf-why-header p{
  font-size:17px;
  line-height:1.6;
  color:var(--lf-light);
}

/* GRID */
.lf-why-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* CARD */
.lf-why-card{
  background:#ffffff;
  padding:34px 28px;
  border-radius:18px;
  text-align:left;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  transition:.35s ease;
  position:relative;
}

.lf-why-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(0,0,0,.12);
}

/* ICON */
.lf-why-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  background:linear-gradient(
    135deg,
    var(--lf-primary),
    var(--lf-secondary)
  );
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.lf-why-icon i{
  color:var(--lf-white);
  font-size:22px;
}

/* TEXT */
.lf-why-card h4{
  font-size:18px;
  font-weight:600;
  color:var(--lf-dark);
  margin-bottom:10px;
}

.lf-why-card p{
  font-size:14.8px;
  line-height:1.65;
  color:#475569;
}

/* MOBILE */
@media(max-width:768px){
  .lf-why-section{
    padding:70px 18px;
  }

  .lf-why-header h2{
    font-size:28px;
  }

  .lf-why-header p{
    font-size:16px;
  }
}

/* ================= ABOUT PAGE HERO ================= */

.lf-page-hero{
  position:relative;
  padding:220px 20px 200px;
  background-image:url('../images/13.jpeg'); 
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  font-family:'Poppins',sans-serif;
  overflow:hidden;
}

/* Brand overlay */
.lf-page-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(15,61,36,0.92),
    rgba(31,122,58,0.9)
  );
  z-index:1;
}

/* Content */
.lf-page-hero-inner{
  max-width:900px;
  margin:auto;
  text-align:center;
  position:relative;
  z-index:2;
}

.lf-page-hero h1{
  font-size:48px;
  font-weight:700;
  color:var(--lf-white);
  margin-bottom:20px;
  line-height:1.2;
}

.lf-page-hero p{
  font-size:18px;
  line-height:1.6;
  color:rgba(255,255,255,.92);
  max-width:760px;
  margin:auto;
}

/* MOBILE */
@media(max-width:768px){
  .lf-page-hero{
    padding:90px 18px 80px;
  }

  .lf-page-hero h1{
    font-size:32px;
  }

  .lf-page-hero p{
    font-size:16px;
  }
}

/* ================= WHO WE ARE ================= */

.lf-about-intro{
  padding:100px 20px;
  background:#ffffff;
  font-family:'Poppins',sans-serif;
}

.lf-about-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* TEXT */
.lf-about-text h2{
  font-size:34px;
  font-weight:700;
  color:var(--lf-dark);
  margin-bottom:24px;
}

.lf-accent-box{
  padding:28px 30px;
  border-left:5px solid var(--lf-primary);
  background:var(--lf-light);
  border-radius:10px;
}

.lf-accent-box p{
  font-size:16.5px;
  line-height:1.7;
  color:#475569;
  margin-bottom:18px;
}

.lf-accent-box p:last-child{
  margin-bottom:0;
}

.lf-accent-box strong{
  color:var(--lf-dark);
  font-weight:600;
}

/* IMAGE */
.lf-about-image{
  position:relative;
}

.lf-about-image::after{
  content:"";
  position:absolute;
  right:-18px;
  bottom:-18px;
  width:100%;
  height:100%;
  border:6px solid var(--lf-primary);
  z-index:0;
  border-radius:6px;
}

.lf-about-image img{
  width:100%;
  display:block;
  position:relative;
  z-index:1;
  border-radius:6px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

/* MOBILE */
@media(max-width:900px){
  .lf-about-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .lf-about-text h2{
    font-size:28px;
    text-align:center;
  }

  .lf-accent-box{
    border-left:none;
    border-top:4px solid var(--lf-primary);
  }

  .lf-about-image::after{
    display:none;
  }
}

/* ===============================
   LiFE – VMO FLIP CARDS
================================ */

.vmo-section{
  padding:90px 20px;
  background:var(--lf-light);
  font-family:'Poppins',sans-serif;
}

.vmo-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  perspective:1200px;
}

/* CARD */
.vmo-card{
  height:320px;
}

.vmo-inner{
  position:relative;
  width:100%;
  height:100%;
  transform-style:preserve-3d;
  transition:transform .8s cubic-bezier(.4,.2,.2,1);
}

/* FLIP */
.vmo-card:hover .vmo-inner{
  transform:rotateY(180deg);
}

/* FRONT & BACK */
.vmo-front,
.vmo-back{
  position:absolute;
  inset:0;
  backface-visibility:hidden;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
  padding:34px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* FRONT */
.vmo-front{
  background:#ffffff;
}

.vmo-front i{
  font-size:44px;
  color:var(--lf-primary);
  margin-bottom:16px;
}

.vmo-front h3{
  font-size:22px;
  font-weight:600;
  color:var(--lf-dark);
}

/* BACK */
.vmo-back{
  background:linear-gradient(
    135deg,
    var(--lf-dark),
    var(--lf-primary)
  );
  color:var(--lf-white);
  transform:rotateY(180deg);
}

.vmo-back p{
  font-size:15.5px;
  line-height:1.7;
  color:var(--lf-white);
}

/* OFFERINGS LIST */
.vmo-offerings{
  list-style:none;
  padding:0;
  display:grid;
  gap:12px;
  width:100%;
}

.vmo-offerings li{
  background:rgba(255,255,255,.15);
  padding:10px 14px;
  border-radius:12px;
  font-weight:600;
  font-size:14px;
  color:var(--lf-white);
}

/* MOBILE SAFETY */
@media(max-width:768px){
  .vmo-card{
    height:280px;
  }
}


