/* ===========================
   AddLifeON Premium Website
   =========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#ffffff;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   HEADER
   =========================== */

header{
    position:sticky;
    top:0;
    z-index:999;
    background:#ffffff;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
}

.logo img{
    height:80px;
    width:auto;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#1b1b1b;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#4caf50;
}

.join-btn{
    background:#4caf50;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.join-btn:hover{
    background:#2e7d32;
}

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

.hero{
    padding:80px 0;
    background:linear-gradient(
        135deg,
        #f1fff1 0%,
        #ffffff 100%
    );
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    background:#dff4df;
    color:#2e7d32;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
    color:#1b5e20;
    margin-bottom:25px;
}

.hero p{
    font-size:18px;
    margin-bottom:30px;
    color:#555;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.primary-btn{
    background:#4caf50;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
}

.primary-btn:hover{
    background:#2e7d32;
}

.secondary-btn{
    border:2px solid #4caf50;
    color:#4caf50;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
}

.secondary-btn:hover{
    background:#4caf50;
    color:white;
}

.hero-logo{
    text-align:center;
}

.hero-logo img{
    max-width:450px;
    width:100%;
    height:auto;
    filter:drop-shadow(0 15px 35px rgba(0,0,0,.15));
}

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

.section{
    padding:90px 0;
}

.bg-light{
    background:#f7faf7;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#1b5e20;
    margin-bottom:25px;
}

.section-text{
    max-width:950px;
    margin:auto;
    text-align:center;
    font-size:18px;
    color:#555;
}

/* ===========================
   BENEFITS
   =========================== */

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.benefit-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-8px);
}

.benefit-card h3{
    color:#1b5e20;
    margin-bottom:20px;
}

.benefit-card ul{
    padding-left:20px;
}

.benefit-card li{
    margin-bottom:12px;
}

/* ===========================
   PROGRAMS
   =========================== */

.program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.program-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.program-card h3{
    color:#1b5e20;
    margin-bottom:20px;
}

.program-card p{
    color:#555;
    margin-bottom:15px;
}

.program-card ul{
    padding-left:20px;
}

.program-card li{
    margin-bottom:10px;
}

/* ===========================
   JOURNEY
   =========================== */

.journey{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.journey div{
    background:white;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.journey h3{
    color:#ff9800;
    margin-bottom:15px;
}

/* ===========================
   FOUNDER
   =========================== */

.founder-name{
    text-align:center;
    color:#4caf50;
    font-size:30px;
    margin-bottom:20px;
}

blockquote{
    max-width:700px;
    margin:40px auto;
    text-align:center;
    font-size:24px;
    font-style:italic;
    color:#1b5e20;
}

/* ===========================
   FORM
   =========================== */

.form-section{
    background:
    linear-gradient(
    135deg,
    #1b5e20,
    #2e7d32
    );
}

.white{
    color:white;
}

#joinForm{
    max-width:900px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

#joinForm input,
#joinForm select,
#joinForm textarea{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    font-size:15px;
}

#joinForm textarea{
    grid-column:1 / 3;
}

#joinForm button{
    grid-column:1 / 3;
    padding:18px;
    background:#ff9800;
    color:white;
    border:none;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

#joinForm button:hover{
    background:#f57c00;
}

/* ===========================
   CONTACT
   =========================== */

.contact-box{
    text-align:center;
    font-size:22px;
}

.contact-box p{
    margin-bottom:15px;
}

/* ===========================
   FOOTER
   =========================== */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.footer-logo{
    height:120px;
    margin-bottom:15px;
}

footer h3{
    margin-bottom:10px;
}

footer p{
    color:#ccc;
}

/* ===========================
   WHATSAPP
   =========================== */

.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:white;
    text-decoration:none;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    z-index:9999;
}

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

@media(max-width:992px){

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

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

.hero-buttons{
    justify-content:center;
}

.program-grid,
.benefit-grid,
.journey{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.logo img{
    height:60px;
}

nav{
    display:none;
}

.join-btn{
    display:none;
}

.section-title{
    font-size:32px;
}

.hero{
    padding:50px 0;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

#joinForm{
    grid-template-columns:1fr;
}

#joinForm textarea,
#joinForm button{
    grid-column:auto;
}

.footer-logo{
    height:90px;
}

.contact-box{
    font-size:18px;
}

.whatsapp-btn{
    width:55px;
    height:55px;
    font-size:26px;
}

}
/* Scroll Animation */

.benefit-card,
.program-card,
.journey div{

    opacity:1;
    transform:none;

    transition:
    all .8s ease;

}

.show{

    opacity:1 !important;
    transform:translateY(0px) !important;

}
.benefit-card,
.program-card,
.journey div{
    opacity:1;
    transform:none;
}


/* ===========================
   21-DAY PROGRAM HIGHLIGHT
   Minimal homepage addition
   =========================== */
.hero-program-badge{
    display:inline-block;
    margin-top:12px;
    padding:7px 13px;
    border-radius:999px;
    background:#fff7e6;
    color:#2e7d32;
    border:1px solid #f2d59a;
    font-size:13px;
    font-weight:600;
}

.featured-program{
    padding:58px 0;
    background:linear-gradient(180deg,#ffffff 0%,#f5faf3 100%);
}

.featured-program-inner{
    display:grid;
    grid-template-columns:1.35fr .9fr;
    gap:35px;
    align-items:center;
    padding:34px 38px;
    background:#ffffff;
    border:1px solid #dfeedd;
    border-radius:24px;
    box-shadow:0 12px 35px rgba(27,94,32,.09);
}

.featured-kicker{
    display:inline-block;
    margin-bottom:8px;
    color:#4caf50;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.4px;
}

.featured-copy h2{
    color:#1b5e20;
    font-size:36px;
    line-height:1.2;
    margin-bottom:10px;
}

.featured-copy p{
    color:#555;
    font-size:16px;
    max-width:680px;
    margin-bottom:18px;
}

.featured-pills{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:22px;
}

.featured-pills span{
    background:#f2f8f0;
    color:#315b35;
    border:1px solid #deebda;
    border-radius:50px;
    padding:7px 11px;
    font-size:12px;
    font-weight:600;
}

.featured-btn{
    display:inline-block;
    text-decoration:none;
    background:#4caf50;
    color:#fff;
    padding:12px 20px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.featured-btn:hover{
    background:#2e7d32;
    transform:translateY(-2px);
}

.featured-steps{
    display:grid;
    gap:12px;
}

.featured-step{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 16px;
    border-radius:16px;
    background:#f8fbf7;
    border-left:4px solid #4caf50;
}

.featured-step b{
    width:38px;
    height:38px;
    flex:0 0 38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e8f5e9;
    color:#2e7d32;
    font-size:13px;
}

.featured-step strong,
.featured-step small{
    display:block;
}

.featured-step strong{
    color:#1b5e20;
    font-size:14px;
}

.featured-step small{
    color:#666;
    font-size:12px;
}

/* ===========================
   FORM TOUCH-UP
   Keeps original fields + submission logic
   =========================== */
.form-subtitle{
    text-align:center;
    color:rgba(255,255,255,.92);
    margin:-8px auto 28px;
    font-size:14px;
}

#joinForm{
    max-width:900px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px 18px;
}

#joinForm .input-group{
    position:relative;
    min-width:0;
}

#joinForm input,
#joinForm select,
#joinForm textarea{
    width:100%;
    border:2px solid transparent;
    outline:none;
    background:#fff;
    color:#222;
    border-radius:14px;
    font-family:inherit;
    font-size:15px;
    transition:.25s;
}

#joinForm input,
#joinForm select{
    height:58px;
    padding:0 16px 0 52px;
}

#joinForm textarea{
    min-height:125px;
    padding:17px 16px 17px 52px;
    resize:vertical;
}

#joinForm input:focus,
#joinForm select:focus,
#joinForm textarea:focus{
    border-color:#ffb74d;
    box-shadow:0 0 0 4px rgba(255,183,77,.16);
}

#joinForm .input-group i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#2e7d32;
    font-size:17px;
    z-index:2;
    pointer-events:none;
}

#joinForm .input-group:has(textarea) i{
    top:24px;
    transform:none;
}

#joinForm select{
    appearance:auto;
}

#joinForm textarea,
#joinForm button{
    grid-column:1 / 3;
}

#joinForm button{
    width:100%;
    padding:16px 20px;
    background:#ff9800;
    color:#fff;
    border:none;
    border-radius:12px;
    font-family:inherit;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

#joinForm button:hover{
    background:#f57c00;
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,.15);
}

#joinForm button:disabled{
    opacity:.7;
    cursor:wait;
    transform:none;
}

/* Footer logo is intentionally compact */
footer .footer-logo-img,
footer .logo img{
    height:68px !important;
    width:auto !important;
    max-width:110px;
    object-fit:contain;
}

@media(max-width:992px){
    .featured-program-inner{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .hero-program-badge{
        font-size:12px;
    }

    .featured-program{
        padding:40px 0;
    }

    .featured-program-inner{
        padding:25px 20px;
        border-radius:20px;
    }

    .featured-copy h2{
        font-size:29px;
    }

    #joinForm{
        grid-template-columns:1fr;
        gap:14px;
    }

    #joinForm textarea,
    #joinForm button{
        grid-column:auto;
    }

    .form-subtitle{
        font-size:13px;
        padding:0 10px;
    }
}

/* Linked program pages - compact additions, preserving the existing layout */
.program-card h3 a{
  color:inherit;
  text-decoration:none;
}
.program-card h3 a:hover{
  color:#2e7d32;
}
.program-more{
  display:inline-block;
  margin-top:10px;
  color:#2e7d32;
  font-weight:600;
  text-decoration:none;
  font-size:13px;
}
.program-more:hover{
  text-decoration:underline;
}
.program-page-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 24px;
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid #e6eee4;
}
.program-page-links a{
  color:#2e7d32;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
}
.program-page-links a:hover{
  text-decoration:underline;
}
@media (max-width:700px){
  .program-page-links{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }
}
