/* =========================================================
   VEROLIFE FAQ PAGE ONLY
   Common Header / Footer CSS = style.css
========================================================= */


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

.faq-page{
  width:100%;
  padding:18px 22px 70px;
  overflow:hidden;
  background:#fff;
}


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

.faq-hero{
  position:relative;

  width:min(1420px,100%);
  min-height:560px;

  display:grid;
  grid-template-columns:.9fr 1.1fr;
padding: 100px 0px;
  margin:0 auto;

  overflow:hidden;
  border-radius:30px;

  background:
    radial-gradient(
      circle at 13% 35%,
      rgba(196,234,184,.42),
      transparent 42%
    ),
    #f8fbf6;
}


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

.faq-hero__copy{
  position:relative;
  z-index:3;

  display:flex;
  flex-direction:column;
  justify-content:center;

  padding:70px 45px 65px 68px;
}


/* KICKER */

.faq-kicker-row{
  display:flex;
  align-items:center;
  gap:10px;

  color:#347c2c;
}


.faq-kicker{
  font-family: "DM Sans", sans-serif;
  font-size:13px;
  font-weight:700;

  text-transform:uppercase;
  letter-spacing:.4px;
}


.faq-kicker-row .fa-seedling{
  font-size:13px;
}


.faq-kicker-line{
  width:58px;
  height:1px;

  background:#79aa6e;
}


/* HERO TITLE */

.faq-hero h1{
  max-width:520px;

  margin:28px 0 0;

  font-family: "DM Sans", sans-serif;

  font-size:76px;
  font-weight:400;

  line-height:.92;
  letter-spacing:-2px;

  color:#1e2822;
}


.faq-hero h1 span{
  display:block;
  color:#347f2d;
}


/* TITLE DECORATION */

.faq-title-mark{
  display:flex;
  align-items:center;

  gap:12px;

  margin-top:25px;

  color:#438d36;
}


.faq-title-mark span{
  width:120px;
  height:1px;

  background:#7bab70;
}


/* DESCRIPTION */

.faq-hero__copy > p{
  max-width:430px;

  margin:27px 0 0;

  color:#52625b;

  font-family: "DM Sans", sans-serif;
  font-size:16px;

  line-height:1.75;
}


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

   IMAGE FILE:
   faq-hero.jpg

   RECOMMENDED SIZE:
   1600 × 1000 PX
========================================================= */

.faq-hero__visual{
  position:relative;

  width:100%;
  height:560px;

  overflow:hidden;

  border-radius:
    250px 0 0 250px;
}


.faq-hero__visual img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;
  object-position:center;

  transition:
    transform .7s ease;
}


.faq-hero:hover
.faq-hero__visual img{
  transform:scale(1.025);
}


.faq-hero__curve{
  position:absolute;

  left:0;
  top:0;

  width:10px;
  height:100%;

  border-radius:50%;

  background:
    linear-gradient(
      180deg,
      #286f27,
      #4c9839
    );
}


/* =========================================================
   FAQ LIST SECTION
========================================================= */

.faq-list-section{
  width:100%;

  padding:
    42px 20px 10px;
}


.faq-list{
  position:relative;

  width:min(1320px,100%);

  margin:0 auto;

  padding-left:155px;
}


/* LEFT CONNECTING LINE */

.faq-list::before{
  content:"";

  position:absolute;

  left:66px;
  top:50px;
  bottom:50px;

  width:1px;

  background:
    linear-gradient(
      180deg,
      rgba(66,139,52,.08),
      rgba(66,139,52,.52),
      rgba(66,139,52,.08)
    );
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item{
  position:relative;

  width:100%;

  margin:0 0 16px;

  border:
    1px solid #d8e7d4;

  border-radius:18px;

  background:#fff;

  box-shadow:
    0 8px 24px
    rgba(39,82,42,.04);

  overflow:visible;

  transition:
    border-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}


.faq-item:last-child{
  margin-bottom:0;
}


.faq-item:hover{
  border-color:#bdd9b6;

  box-shadow:
    0 12px 30px
    rgba(39,82,42,.075);
}


/* =========================================================
   LEFT ICON
========================================================= */

.faq-item__icon-wrap{
  position:absolute;

  left:-145px;
  top:50%;

  width:125px;

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

  transform:translateY(-50%);
}


.faq-item__icon{
  position:relative;

  width:92px;
  height:92px;

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

  border:
    1px solid #cfe2ca;

  border-radius:50%;

  background:
    radial-gradient(
      circle at 50% 45%,
      #fff 0%,
      #eff7ec 100%
    );

  color:#31822e;

  font-size:35px;

  box-shadow:
    0 8px 22px
    rgba(45,105,45,.05);
}


.faq-item__icon::after{
  content:"";

  position:absolute;

  inset:-6px;

  border:
    1px dashed
    rgba(70,142,58,.28);

  border-radius:50%;

  pointer-events:none;
}


/* =========================================================
   FAQ CONTENT
========================================================= */

.faq-item__content{
  position:relative;

  width:100%;

  padding:0;
}


/* =========================================================
   QUESTION BUTTON
========================================================= */

.faq-item__button{
  position:relative;

  width:100%;
  min-height:88px;

  display:flex;
  align-items:center;

  padding:
    18px
    80px
    18px
    62px;

  margin:0;

  border:0;
  outline:0;

  appearance:none;
  -webkit-appearance:none;

  background:transparent;

  color:inherit;

  text-align:left;

  cursor:pointer;

  font-family: "DM Sans", sans-serif;

  box-shadow:none;
}


/* REMOVE BLACK FOCUS BORDER */

.faq-item__button:focus{
  outline:0 !important;
  box-shadow:none !important;
}


.faq-item__button:focus-visible{
  outline:0 !important;

  box-shadow:
    inset 0 0 0 2px
    rgba(55,133,46,.15) !important;

  border-radius:17px;
}


/* =========================================================
   NUMBER
========================================================= */

.faq-item__number{
  position:absolute;

  left:0;
  top:50%;

  z-index:3;

  width:48px;
  height:36px;

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

  padding-right:6px;

  background:
    linear-gradient(
      135deg,
      #256f26,
      #3d9432
    );

  clip-path:
    polygon(
      0 0,
      78% 0,
      100% 50%,
      78% 100%,
      0 100%
    );

  color:#fff;

  font-family: "DM Sans", sans-serif;

  font-size:12px;
  font-weight:700;

  transform:
    translateY(-50%);
}


/* =========================================================
   QUESTION TEXT
========================================================= */

.faq-item__question{
  display:block;

  max-width:850px;

  margin:0;
  padding:0;

  border:0 !important;
  outline:0 !important;

  background:transparent;

  color:#222d27;

  font-family: "DM Sans", sans-serif;

  font-size:18px;
  font-weight:700;

  line-height:1.38;
}


/* =========================================================
   PLUS / MINUS
========================================================= */

.faq-item__toggle{
  position:absolute;

  right:22px;
  top:50%;

  width:38px;
  height:38px;

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

  border:
    1px solid #c8dec2;

  border-radius:50%;

  background:#f0f8ed;

  color:#32832f;

  font-size:15px;

  transform:
    translateY(-50%);

  pointer-events:none;

  transition:
    background .25s ease,
    color .25s ease,
    transform .3s ease;
}


.faq-item__button:hover
.faq-item__toggle{
  background:#32832f;

  color:#fff;
}


/* =========================================================
   ANSWER
========================================================= */

.faq-item__answer{
  display:grid;

  grid-template-rows:0fr;

  width:100%;

  padding:
    0
    80px
    0
    62px;

  opacity:0;

  transition:
    grid-template-rows .38s ease,
    opacity .25s ease,
    padding .38s ease;
}


/* INNER WRAPPER IS ADDED BY JS */

.faq-item__answer-inner{
  min-height:0;

  overflow:hidden;
}


.faq-item__answer p{
  max-width:820px;

  margin:0;

  color:#58675f;

  font-family: "DM Sans", sans-serif;

  font-size:14px;

  line-height:1.75;
}


/* =========================================================
   FAQ OPEN STATE
========================================================= */

.faq-item.is-open{
  border-color:#afd1a7;

  background:
    linear-gradient(
      100deg,
      #ffffff 0%,
      #fbfef9 100%
    );

  box-shadow:
    0 14px 35px
    rgba(46,100,45,.09);
}


.faq-item.is-open
.faq-item__button{
  min-height:76px;

  padding-bottom:8px;
}


.faq-item.is-open
.faq-item__answer{
  grid-template-rows:1fr;

  padding:
    0
    80px
    23px
    62px;

  opacity:1;
}


.faq-item.is-open
.faq-item__toggle{
  background:#32832f;

  border-color:#32832f;

  color:#fff;
}


/* =========================================================
   HELP CTA
========================================================= */

.faq-help-section{
  width:100%;

  padding:
    32px 20px 0;
}


.faq-help{
  position:relative;

  width:min(1320px,100%);
  min-height:210px;

  display:grid;

  grid-template-columns:
    1fr 340px 245px;

  gap:28px;

  align-items:center;

  margin:0 auto;

  padding:
    34px 44px;

  overflow:hidden;

  border-radius:
    28px 28px 28px 8px;

  background:
    radial-gradient(
      circle at 63% 50%,
      rgba(87,171,59,.23),
      transparent 33%
    ),
    linear-gradient(
      110deg,
      #123c27 0%,
      #1b542c 52%,
      #347d30 100%
    );

  box-shadow:
    0 18px 42px
    rgba(30,72,34,.15);
}


/* CTA DECORATION */

.faq-help::before{
  content:"";

  position:absolute;

  right:240px;
  top:-150px;

  width:420px;
  height:420px;

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

  border-radius:50%;

  box-shadow:
    0 0 0 50px
    rgba(255,255,255,.018),
    0 0 0 100px
    rgba(255,255,255,.012);

  pointer-events:none;
}


/* =========================================================
   CTA COPY
========================================================= */

.faq-help__copy{
  position:relative;
  z-index:2;
}


.faq-help__copy > span{
  color:#9ed28f;

  font-family: "DM Sans", sans-serif;

  font-size:12px;
  font-weight:700;

  letter-spacing:.5px;

  text-transform:uppercase;
}


.faq-help__copy h2{
  margin:8px 0 0;

  color:#fff;

  font-family: "DM Sans", sans-serif;

  font-size:48px;
  font-weight:400;

  line-height:1;
}


.faq-help__line{
  display:block;

  width:34px;
  height:2px;

  margin-top:14px;

  background:#79c45b;
}


.faq-help__copy p{
  max-width:430px;

  margin:15px 0 0;

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

  font-size:14px;

  line-height:1.7;
}


/* =========================================================
   CTA CENTER VISUAL
========================================================= */

.faq-help__visual{
  position:relative;
  z-index:2;
}


.faq-help__orbit{
  position:relative;

  width:250px;
  height:145px;

  margin:auto;
}


/* MAIL */

.faq-help__mail{
  position:absolute;

  left:50%;
  top:50%;

  width:105px;
  height:82px;

  display:grid;
  place-items:center;

  border-radius:12px;

  background:
    linear-gradient(
      150deg,
      #fff,
      #dbe8d7
    );

  color:#456f45;

  font-size:44px;

  transform:
    translate(-50%,-50%);

  box-shadow:
    0 14px 30px
    rgba(0,0,0,.15);
}


.faq-help__mail span{
  position:absolute;

  top:18px;

  color:#3a8d30;

  font-size:19px;
}


/* SMALL CIRCLES */

.faq-help__small{
  position:absolute;

  width:43px;
  height:43px;

  display:grid;
  place-items:center;

  border-radius:50%;

  background:
    linear-gradient(
      145deg,
      #88be44,
      #5b9d37
    );

  color:#fff;

  box-shadow:
    0 8px 18px
    rgba(0,0,0,.12);
}


.faq-help__small--one{
  left:18px;
  top:0;
}


.faq-help__small--two{
  right:20px;
  top:7px;
}


.faq-help__small--three{
  left:0;
  bottom:3px;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.faq-help__action{
  position:relative;
  z-index:2;

  display:flex;

  justify-content:flex-end;
}


.faq-help__button{
  min-height:58px;

  display:inline-flex;

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

  gap:18px;

  padding:
    0 27px;

  border-radius:12px;

  background:#fff;

  color:#266b29;

  font-family: "DM Sans", sans-serif;

  font-size:14px;
  font-weight:600;

  text-decoration:none;

  box-shadow:
    0 8px 20px
    rgba(0,0,0,.08);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


.faq-help__button:hover{
  color:#266b29;

  transform:
    translateY(-2px);

  box-shadow:
    0 13px 26px
    rgba(0,0,0,.14);
}


/* =========================================================
   SAFE VISIBILITY
   JS fail ho tab bhi page visible rahe
========================================================= */

.faq-hero__copy,
.faq-hero__visual,
.faq-item,
.faq-help{
  opacity:1 !important;
  visibility:visible !important;
}


/* =========================================================
   OPTIONAL ANIMATION
========================================================= */

.faq-animate{
  animation:
    faqFadeUp .65s ease both;
}


@keyframes faqFadeUp{

  from{
    opacity:0;
    transform:
      translateY(22px);
  }

  to{
    opacity:1;
    transform:
      translateY(0);
  }

}


/* =========================================================
   LAPTOP
========================================================= */

@media(max-width:1200px){

  .faq-hero{
    grid-template-columns:
      .95fr 1.05fr;
  }


  .faq-hero__copy{
    padding:
      60px 35px 60px 48px;
  }


  .faq-hero h1{
    font-size:65px;
  }


  .faq-list{
    padding-left:135px;
  }


  .faq-list::before{
    left:60px;
  }


  .faq-item__icon-wrap{
    left:-130px;
    width:115px;
  }


  .faq-item__icon{
    width:86px;
    height:86px;

    font-size:32px;
  }


  .faq-item__question{
    font-size:17px;
  }


  .faq-help{
    grid-template-columns:
      1fr 270px 225px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:980px){

  .faq-page{
    padding:
      12px 14px 55px;
  }


  /* HERO */

  .faq-hero{
    grid-template-columns:1fr;

    min-height:auto;
  }


  .faq-hero__copy{
    align-items:center;

    padding:
      60px 30px 42px;

    text-align:center;
  }


  .faq-kicker-row,
  .faq-title-mark{
    justify-content:center;
  }


  .faq-hero h1{
    max-width:620px;

    font-size:60px;
  }


  .faq-hero__copy > p{
    max-width:600px;
  }


  .faq-hero__visual{
    width:
      calc(100% - 30px);

    height:430px;

    margin:
      0 15px 15px;

    border-radius:22px;
  }


  .faq-hero__curve{
    display:none;
  }


  /* FAQ LIST */

  .faq-list{
    padding-left:110px;
  }


  .faq-list::before{
    left:47px;
  }


  .faq-item__icon-wrap{
    left:-105px;

    width:90px;
  }


  .faq-item__icon{
    width:74px;
    height:74px;

    font-size:27px;
  }


  .faq-item__button{
    padding:
      17px
      70px
      17px
      60px;
  }


  .faq-item__answer{
    padding:
      0
      70px
      0
      60px;
  }


  .faq-item.is-open
  .faq-item__answer{
    padding:
      0
      70px
      21px
      60px;
  }


  /* CTA */

  .faq-help{
    grid-template-columns:
      1fr 230px;
  }


  .faq-help__visual{
    display:none;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:650px){

  .faq-page{
    padding:
      8px 8px 45px;
  }


  /* HERO */

  .faq-hero{
    border-radius:22px;
  }


  .faq-hero__copy{
    padding:
      45px 20px 35px;
  }


  .faq-kicker{
    font-size:12px;
  }


  .faq-kicker-line{
    width:40px;
  }


  .faq-hero h1{
    margin-top:20px;

    font-size:48px;

    line-height:.95;

    letter-spacing:-1px;
  }


  .faq-hero__copy > p{
    font-size:14px;

    line-height:1.7;
  }


  /*
    HERO SOURCE IMAGE:
    1600 × 1000 PX
  */

  .faq-hero__visual{
    width:
      calc(100% - 18px);

    height:310px;

    margin:
      0 9px 9px;

    border-radius:17px;
  }


  /* FAQ LIST */

  .faq-list-section{
    padding:
      25px 4px 5px;
  }


  .faq-list{
    padding-left:0;
  }


  .faq-list::before{
    display:none;
  }


  .faq-item{
    margin-bottom:12px;

    border-radius:16px;
  }


  /* hide large icon on mobile */

  .faq-item__icon-wrap{
    display:none;
  }


  .faq-item__button{
    min-height:76px;

    padding:
      16px
      56px
      16px
      56px;
  }


  .faq-item__number{
    width:44px;
    height:34px;

    font-size:12px;
  }


  .faq-item__question{
    font-size:15px;

    line-height:1.42;
  }


  .faq-item__toggle{
    right:13px;

    width:34px;
    height:34px;

    font-size:13px;
  }


  .faq-item__answer{
    padding:
      0
      18px
      0
      56px;
  }


  .faq-item.is-open
  .faq-item__button{
    min-height:68px;
  }


  .faq-item.is-open
  .faq-item__answer{
    padding:
      0
      18px
      18px
      56px;
  }


  .faq-item__answer p{
    font-size:13px;

    line-height:1.65;
  }


  /* CTA */

  .faq-help-section{
    padding:
      25px 4px 0;
  }


  .faq-help{
    grid-template-columns:1fr;

    min-height:auto;

    gap:24px;

    padding:
      32px 22px;

    text-align:center;

    border-radius:
      22px 22px 22px 7px;
  }


  .faq-help__copy h2{
    font-size:40px;
  }


  .faq-help__line{
    margin-left:auto;
    margin-right:auto;
  }


  .faq-help__copy p{
    margin-left:auto;
    margin-right:auto;
  }


  .faq-help__action{
    justify-content:center;
  }


  .faq-help__button{
    width:100%;
    max-width:260px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:390px){

  .faq-hero h1{
    font-size:42px;
  }


  .faq-hero__visual{
    height:275px;
  }


  .faq-item__question{
    font-size:14px;
  }


  .faq-help__copy h2{
    font-size:35px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

  .faq-animate{
    animation:none !important;
  }


  .faq-item__answer{
    transition:none !important;
  }

}

/* =========================================================
   GLOBAL FONT CONSISTENCY - ICON SAFE
   Do not override ::before / ::after because icon libraries
   use their own font-family on pseudo-elements.
========================================================= */
html,
body,
button,
input,
select,
textarea {
  font-family: "DM Sans", sans-serif;
}

