/*====================================================
                GOOGLE FONT
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*====================================================
                GLOBAL STYLES
====================================================*/

body{

    font-family:'Poppins',sans-serif;

    color:#555;

    background:#ffffff;

    overflow-x:hidden;

}

.section-padding{

    padding:90px 0;

}

.section-tag{

    display:inline-block;

    background:#eaf3ff;

    color:#0d6efd;

    padding:10px 22px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    margin-bottom:18px;

}

.section-heading{

    margin-bottom:60px;

}

.section-heading h2{

    font-size:42px;

    font-weight:700;

    color:#111827;

    margin-bottom:20px;

}

.section-heading p{

    font-size:17px;

    color:#666;

    max-width:750px;

    margin:auto;

    line-height:1.8;

}


/*====================================================
                HERO SECTION
====================================================*/

.life-hero{

    background:linear-gradient(135deg,#f6fbff,#eef6ff);

    /* padding:90px 0; */

    padding:140px 100px 0;

    overflow:hidden;

}

.hero-content .hero-tag{

    display:inline-block;

    background:#dcebff;

    color:#0d6efd;

    padding:10px 22px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    margin-top:50px;

    margin-bottom:22px;

}

.hero-content h1{

    font-size:55px;

    font-weight:800;

    line-height:1.15;

    color:#111827;

    margin-bottom:20px;

}

.hero-content h1 span{

    color:#0d6efd;

}

.hero-content h3{

    color:#0d6efd;

    font-size:24px;

    font-weight:600;

    line-height:1.7;

    margin-bottom:25px;

}

.hero-content p{

    font-size:17px;

    line-height:1.9;

    margin-bottom:18px;

    color:#555;

}



/*====================================================
                HERO BUTTON
====================================================*/

.hero-buttons{

    margin-top:35px;

}

.btn-primary-custom{

    background:#0d6efd;

    color:#ffffff;

    text-decoration:none;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    display:inline-block;

    transition:.35s;

}

.btn-primary-custom:hover{

    background:#084fc7;

    color:#ffffff;

    transform:translateY(-3px);

}



/*====================================================
                HERO IMAGE
====================================================*/

.hero-image-wrapper{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:520px;

}

.hero-circle{

    width:550px;

    height:550px;

    /* border-radius:50%; */

    background:#d9eaff;

    position:absolute;

}

.hero-image-wrapper img{

    position:relative;

    width:600px;

    height:600px;

    object-fit:cover;

    /* border-radius:50%; */

    border:8px solid rgba(255,255,255,.85);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    z-index:2;

}

  :root{
    --navy:#1B4D92;
    --navy-dark:#123A72;
    --panel:#EAF0FA;
    --panel-border:#DCE6F7;
    --text:#1B2733;
    --text-soft:#5B6B7C;
    --orange:#F5821F;
    --green:#2FAE60;
    --card-radius:20px;
  }
  *{box-sizing:border-box;}
  /* body{
    margin: 0;
    background:#ffffff;
    font-family:'Inter', sans-serif;
    color:var(--text);
    padding:32px 16px;
  } */
  .card{
    max-width:520px;
    margin:30px auto;
    background:#fff;
    border:2px solid var(--navy);
    border-radius:var(--card-radius);
    padding:30px 28px 28px;
    position:relative;
  }
  .progress-track{
    height:4px;
    background:var(--panel-border);
    border-radius:4px;
    margin-bottom:22px;
    overflow:hidden;
  }
  .progress-fill{
    height:100%;
    background:var(--navy);
    border-radius:4px;
    transition:width .3s ease;
    width:33%;
  }
  h1.title{
    text-align:center;
    color:var(--navy);
    font-size:24px;
    font-weight:700;
    margin:0 0 22px;
    line-height:1.3;
  }
  .step{display:none;}
  .step.active{display:block;}

  .field{
    display:flex;
    align-items:center;
    gap:14px;
    background:var(--panel);
    border:1px solid var(--panel-border);
    border-radius:14px;
    padding:12px 16px;
    margin-bottom:14px;
  }
  .icon-badge{
    width:44px;
    height:44px;
    min-width:44px;
    border-radius:50%;
    background:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .icon-badge svg{width:22px;height:22px;stroke:#fff;fill:none;stroke-width:1.8;}
  .field-body{flex:1;min-width:0;}
  .field-body label{
    display:block;
    font-weight:600;
    font-size:14.5px;
    color:var(--text);
    margin-bottom:2px;
  }
  .field-body label .hint-inline{
    font-weight:400;
    font-size:12px;
    color:var(--text-soft);
  }
  .field-body input, .field-body select{
    width:100%;
    border:1px solid #C7D3E6;
    border-radius:8px;
    padding:9px 10px;
    font-size:14px;
    font-family:'Inter', sans-serif;
    color:var(--text);
    background:#fff;
    outline:none;
    margin-top:4px;
  }
  .field-body input:focus, .field-body select:focus{
    border-color:var(--navy);
  }
  .field-body .pan-note{
    font-size:11.5px;
    color:var(--navy);
    margin-top:5px;
  }
  .error-msg{
    font-size:11.5px;
    color:#C0392B;
    margin-top:4px;
    display:none;
  }
  .field.invalid input, .field.invalid select{border-color:#C0392B;}
  .field.invalid .error-msg{display:block;}

  .consent-row{
    display:flex;
    align-items:flex-start;
    gap:8px;
    margin:18px 2px 20px;
    font-size:12.5px;
    color:var(--text-soft);
    line-height:1.5;
  }
  .consent-row input{margin-top:2px;}
  .consent-row a{color:var(--navy);text-decoration:underline;}

  .btn-row{
    display:flex;
    gap:12px;
    justify-content:center;
    margin-top:6px;
  }
  .btn{
    flex:1;
    max-width:180px;
    padding:12px 18px;
    border-radius:10px;
    border:none;
    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:14.5px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
  }
  .btn-primary{background:var(--navy);color:#fff;}
  .btn-primary:hover{background:var(--navy-dark);}
  .btn-secondary{background:var(--navy);color:#fff;}
  .btn-secondary:hover{background:var(--navy-dark);}
  .btn:disabled{opacity:.55;cursor:not-allowed;}

  /* RESULT STEP */
  .result-title{
    text-align:center;
    font-weight:700;
    font-size:21px;
    color:var(--navy);
    margin:0 0 4px;
  }
  .result-title.underinsured{color:#C0392B;}
  .result-amount{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:var(--text);
    margin:6px 0 22px;
  }
  .bar-labels-top{
    display:flex;
    justify-content:space-between;
    font-size:12.5px;
    font-weight:600;
    color:var(--text-soft);
    margin-bottom:6px;
  }
  .bar-track{
    height:14px;
    background:#E3E9F3;
    border-radius:8px;
    overflow:hidden;
  }
  .bar-fill{
    height:100%;
    background:var(--navy);
    border-radius:8px 0 0 8px;
    transition:width .4s ease;
  }
  .bar-labels-bottom{
    display:flex;
    justify-content:space-between;
    font-size:13px;
    font-weight:600;
    color:var(--text);
    margin-top:6px;
    margin-bottom:26px;
  }

  .plan-card{
    border:1px solid var(--panel-border);
    background:var(--panel);
    border-radius:14px;
    padding:18px;
    text-align:center;
  }
  .plan-card .plan-eyebrow{
    font-size:12px;
    color:var(--navy);
    font-weight:600;
    margin-bottom:8px;
  }
  .plan-card h3{
    margin:0 0 12px;
    font-size:17px;
    color:var(--text);
  }
  .plan-card ul{
    list-style:none;
    padding:0;
    margin:0 0 16px;
    text-align:left;
    display:inline-block;
  }
  .plan-card li{
    font-size:13.5px;
    margin-bottom:6px;
    display:flex;
    align-items:center;
    gap:6px;
  }
  .plan-card li::before{
    content:"✓";
    color:var(--green);
    font-weight:700;
  }
  .plan-btn-row{
    display:flex;
    gap:10px;
    justify-content:center;
  }
  .plan-btn{
    padding:11px 20px;
    border-radius:9px;
    font-weight:600;
    font-size:14px;
    cursor:pointer;
    border:none;
  }
  .plan-btn.buy{background:var(--orange);color:#fff;}
  .plan-btn.know{background:transparent;color:var(--navy);border:1px solid var(--navy);}

  .recalc-row{text-align:center;margin-top:22px;}
  .recalc-row button{
    background:var(--navy);
    color:#fff;
    border:none;
    padding:12px 26px;
    border-radius:10px;
    font-weight:600;
    font-size:14.5px;
    cursor:pointer;
  }
  .recalc-row button:hover{background:var(--navy-dark);}

  .disclaimer{
    font-size:11px;
    color:var(--text-soft);
    text-align:center;
    margin-top:18px;
    line-height:1.5;
  }


/*====================================================
                INFORMATION SECTION
====================================================*/

.life-about{

    /* background:#ffffff; */
    background:#eaf3ff;
    padding:140px 100px 80px;

}

.life-about p{
    

    font-size:20px;

    line-height:1.9;

    color:#555;

    margin-bottom:20px;

}
.about-image img{

    width:100%;

    margin-right: 100px;

    border-radius:30px;

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.about-content p{
    padding:140px 100px 80px;

    font-size:20px;

    line-height:1.9;

    color:#555;

    margin-bottom:20px;

}

/*====================================================
                FINAL CTA SECTION
====================================================*/

.life-cta{

    background:#f8fbff;
    padding:140px 100px 80px;

}

.cta-box{

    background:linear-gradient(135deg,#0d6efd,#3f8cff);

    border-radius:30px;

    padding:60px;

    color:#ffffff;

    overflow:hidden;

    position:relative;

    box-shadow:0 20px 45px rgba(13,110,253,.25);

}

.cta-box .section-tag{

    background:rgba(255,255,255,.18);

    color:#ffffff;

}

.cta-box h2{

    font-size:42px;

    font-weight:700;

    line-height:1.3;

    margin-bottom:22px;

    color:#ffffff;

}

.cta-box p{

    font-size:17px;

    line-height:1.9;

    color:rgba(255,255,255,.95);

    margin-bottom:18px;

}

.cta-buttons{

    margin-top:35px;

}

.cta-buttons .btn-primary-custom{

    background:#ffffff;

    color:#0d6efd;

    border:none;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.cta-buttons .btn-primary-custom:hover{

    background:#f1f5ff;

    color:#0d6efd;

    transform:translateY(-3px);

}



/*====================================================
                CTA IMAGE
====================================================*/

.cta-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.cta-image img{

    width:100%;

    max-width: 600px;

    max-height: 600px;

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.20);

    transition:.35s;

}

.cta-image img:hover{

    transform:scale(1.03);

}



/*====================================================
                FOOTER
====================================================*/

.footer{

    background:#0f172a;

    color:#d1d5db;

    /* padding:45px 0; */

    padding:140px 100px 80px;

}

.footer h4{

    color:#ffffff;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.footer p{

    margin:0;

    line-height:1.8;

    font-size:15px;

}



/*====================================================
                IMAGE EFFECTS
====================================================*/

.hero-image-wrapper img,

.about-image img{

    transition:transform .4s ease,
               box-shadow .4s ease;

}

.hero-image-wrapper img:hover,

.about-image img:hover{

    transform:scale(1.03);

    box-shadow:0 22px 45px rgba(0,0,0,.18);

}



/*====================================================
                LINKS
====================================================*/

a{

    transition:.3s;

}

a:hover{

    text-decoration:none;

}



/*====================================================
                RESPONSIVE
====================================================*/

@media(max-width:991px){

.hero-content{

    text-align:center;

}

.hero-image-wrapper{

    margin-top:50px;

    min-height:380px;

}

.hero-circle{

    width:380px;

    height:380px;

}

.hero-image-wrapper img{

    width:330px;

    height:330px;

}

.about-content{

    margin-top:20px;

}

.cta-box{

    text-align:center;

    padding:45px 35px;

}

.cta-image{

    margin-top:40px;

}

.footer{

    text-align:center;

}

.footer .text-lg-end{

    text-align:center !important;

    margin-top:20px;

}

}



@media(max-width:576px){

.section-padding{

    padding:70px 0;

}

.section-heading h2{

    font-size:30px;

}

.hero-content h1{

    font-size:38px;

}

.hero-content h3{

    font-size:20px;

}

.hero-content p,

.about-content p{

    font-size:15px;

}

.hero-circle{

    width:280px;

    height:280px;

}

.hero-image-wrapper{

    min-height:280px;

}

.hero-image-wrapper img{

    width:240px;

    height:240px;

}

.btn-primary-custom{

    width:100%;

    text-align:center;

}

.cta-box{

    padding:35px 25px;

}

.cta-box h2{

    font-size:30px;

}

.cta-box p{

    font-size:15px;

}

.cta-buttons .btn-primary-custom{

    width:100%;

}

.about-image img,

.cta-image img{

    border-radius:20px;

}

}

/*====================================================
        COVERAGE GAP PAGE - MOBILE NAVBAR FIX
        Uses the common navbar from style.css
====================================================*/

@media (max-width: 991px) {

    .life-hero {
        padding-top: 100px;
        padding-left: 0;
        padding-right: 0;
    }

}