@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import'./utility.css';

:root {
    --green: #00A86B;
    --green-dark: #067A4E;
    --green-mid: #00C27A;
    --pastel: #ebfff5;
    --pastel-soft: #D2F6E7;
    --pastel-tint: #C1F2DF;
    --text: #1E3A31;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--pastel);
}

.topRibbon {
    padding: 18px 0;
    background: var(--green);
    border-radius: 0 0 24px 24px;
}

.topRibbon h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.hero {
    padding: 35px 0;
}

h1 {
    font-size: 40px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.fs26 {
    font-size: 26px;
}

.textGradient {
    background: linear-gradient(90deg, var(--green-mid), var(--green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #333;
    text-align: left;
}

.custom-list li::before {
    content: "";
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("assets/images/check-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.custom-list.cross li::before {
    background-image: url("assets/images/cross-icon.svg");
}

.btn {
    padding: 12px 80px 12px 50px;
    border-radius: 36px;
    font-size: 22px;
    font-weight: 600;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: #fff;
    position: relative;
}

.btn::after {
    content: '\f138';
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    right: 20px;
}

@media(max-width:768px) {
    .btn {
        padding: 10px 30px;
        font-size: 18px;
    }
}

.btn.noicon::after {
    content: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
}

.coachPhotoDesc {
    text-align: center;
}

.coachPhotoDesc img {
    max-width: 400px;
    mix-blend-mode: multiply;
}

@media(max-width:768px) {
    .coachPhotoDesc img {
        max-width: 300px;
    }
}

.masterClassDetails {
    border: 2px solid var(--green);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    max-width: 650px;
    margin: 40px auto;
    background: var(--pastel-soft);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 30px;
}

.masterClassDetailsTitle {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--green-mid), var(--green));
    color: #fff;
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 18px;
    text-align: center;
    white-space: nowrap;
}

.masterClassDetails .item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.masterClassDetails .icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
}

.masterClassDetails h5 {
    margin: 0;
    font-size: 18px;
    color: #444;
    font-weight: 500;
}

.masterClassDetails h6 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.timer {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.timeBox {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    border: 2px solid var(--green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.timeBox h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.timeBox p {
    margin: 4px 0 0;
    font-size: 16px;
    color: #555;
}

.whoSection .whoBox {
    background: var(--pastel);
    padding: 22px 26px 22px 70px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    position: relative;
}

.whoSection .whoIcon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-image: url("assets/images/check-icon.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 3px;
    position: absolute;
    top: 50%;
    left: 26px;
    transform: translateY(-50%);
}

.maxwidth460 {
    max-width: 460px;
}

@media(max-width:576px) {
    .maxwidth460 {
        max-width: 90%;
        width: 90%;
        width: block;
    }
}

.baBox {
    background: #fff;
    padding: 40px 35px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .1);
    height: 100%;
}

.baBox1 {
    border-radius: 20px 0 0 20px;
}

.baBox2 {
    border-radius: 0 20px 20px 0;
}

.baTitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #000;
}

.baUnderline {
    width: 60px;
    height: 4px;
    background: var(--green-dark);
    border-radius: 3px;
    margin-bottom: 25px;
}

.baList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.baList li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    margin-bottom: 18px;
    color: #333;
    line-height: 1.5;
}

.crossIcon,
.checkIcon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 4px;
}

.crossIcon {
    background-image: url("assets/images/cross-icon.svg");
}

.checkIcon {
    background-image: url("assets/images/check-icon.svg");
}

.bonusesSection {
    background: var(--pastel);
}

.bonusTitle {
    font-size: 30px;
    font-weight: 700;
}

.bonusTitle .highlight {
    color: var(--green-mid);
    font-weight: 800;
}

.bonusUnderline {
    width: 60px;
    height: 4px;
    background: var(--green-mid);
    border-radius: 3px;
}

.bonusCard {
    background: var(--pastel-soft);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .2s;
}

.bonusCard:hover {
    transform: translateY(-5px);
}

.bonusIcon {
    width: 80px;
    height: 80px;
}

.bonusText {
    font-size: 26px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
}

.learnTitle {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.learnTitle .highlight {
    color: var(--green-mid);
    font-weight: 800;
}

.learnUnderline {
    width: 60px;
    height: 4px;
    background: var(--green-mid);
    border-radius: 3px;
}

.learnCard {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    min-height: 260px;
}

.learnCard:hover {
    transform: translateY(-4px);
    transition: .2s;
}

.learnIcon {
    width: 80px;
    height: 80px;
}

.learnHeader {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.learnDesc {
    font-size: 15px;
    color: #444;
    margin: 0;
    line-height: 1.5;
}

.storiesTitle {
    font-size: 32px;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
}

.storiesTitle .highlight {
    color: var(--green-mid);
    font-weight: 800;
}

.storiesUnderline {
    width: 80px;
    height: 4px;
    background: var(--green-mid);
    border-radius: 3px;
    position: relative;
}

.storiesUnderline::after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--green-mid);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -3px;
    transform: translateX(-50%);
}

.videoWrapper {
    background: var(--pastel);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .15);
}

.videoWrapper iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.coachSectionGreen {
    background-image: radial-gradient(#eaeaea 1px, transparent 1px);
    background-size: 22px 22px;
}

.coachTitleGreen {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.coachNameGreen {
    font-size: 34px;
    font-weight: 800;
    color: var(--green);
}

.coachUnderlineGreen {
    width: 70px;
    height: 4px;
    background: var(--green);
    border-radius: 3px;
    position: relative;
}

.coachUnderlineGreen::after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -3px;
    transform: translateX(-50%);
}

.coachImageGreen {
    width: 85%;
    max-width: 360px;
    mix-blend-mode: multiply;
    object-fit: cover;
}

.coachContentGreen p {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 18px;
    color: var(--text);
    font-weight: 500;
}

.coachContentGreen a {
    color: var(--green);
    font-weight: 600;
}

.highlightGreen {
    color: var(--green);
    font-weight: 700;
}

.coachQuoteGreen {
    background: var(--green-mid);
    color: #fff;
    padding: 12px 25px;
    border-radius: 20px;
    font-weight: 600;
    max-width: 600px;
    font-size: 16px;
}

.faqSectionGreen {
    background: var(--green-mid);
    padding-top: 120px !important;
    padding-bottom: 80px;
    position: relative;
}

.faqCapsuleGreen {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--green-dark);
    color: #fff;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 18px;
    font-size: 22px;
    max-width: 800px;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, .7);
}

.faqTitleGreen {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
}

.faqUnderlineGreen {
    width: 60px;
    height: 4px;
    background: #fff;
    border-radius: 3px;
    position: relative;
}

.faqUnderlineGreen::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -3px;
    transform: translateX(-50%);
}

.faqItemGreen {
    background: #fff;
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
    border: none !important;
}

.faqBtnGreen {
    font-size: 15px;
    font-weight: 600;
    background: #fff !important;
    border-radius: 8px !important;
    padding: 16px 20px;
    color: #333 !important;
}

.faqBtnGreen::after {
    filter: invert(38%) sepia(95%) saturate(742%) hue-rotate(104deg);
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-item {
    border: none !important;
}

.footerSection {
    background: #000;
    padding: 40px 0 95px;
    color: #fff;
}

@media(max-width:576px) {
    .footerSection {
        padding-bottom: 100px;
    }
}

.footerContent {
    max-width: 900px;
}

.footerDisclaimer {
    font-size: 13px;
    line-height: 1.6;
    opacity: .85;
}

.footerDisclaimer a {
    color: #8a7fff;
    text-decoration: underline;
}

.footerLine {
    border-color: rgba(255, 255, 255, .2);
    margin: 15px auto;
    width: 80%;
}

.footerCopy {
    font-size: 12px;
    opacity: .7;
}

.bottomBar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, .15);
    padding: 12px 0;
    z-index: 9999;
}

.priceBox {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.offerPrice {
    font-size: 30px;
    font-weight: 800;
    color: var(--green);
}

.actualPrice {
    font-size: 18px;
    text-decoration: line-through;
    color: #666;
}

.timerText {
    font-size: 14px;
    color: #222;
    margin-right: auto;
    margin-left: 25px;
    font-weight: 500;
}

.registerBtn {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(0, 168, 92, .35);
    text-decoration: none;
}

.registerBtn:hover {
    opacity: .9;
}

/* ---------------------------
   MEDIA QUERY RESTORE FIXES
-----------------------------*/

/* Large Tablets (<=992px) */
@media (max-width: 992px) {

    /* Font-size utilities */
    .fs17 {
        font-size: 15px !important;
    }

    .fs18 {
        font-size: 16px !important;
    }

    .fs19 {
        font-size: 17px !important;
    }

    .fs20 {
        font-size: 18px !important;
    }

    .fs21 {
        font-size: 19px !important;
    }

    .fs22 {
        font-size: 20px !important;
    }

    .fs23 {
        font-size: 21px !important;
    }

    .fs24 {
        font-size: 22px !important;
    }

    .fs25 {
        font-size: 22px !important;
    }

    .fs26 {
        font-size: 23px !important;
    }

    .fs27 {
        font-size: 23px !important;
    }

    .fs28 {
        font-size: 24px !important;
    }

    .fs29 {
        font-size: 24px !important;
    }

    .fs30 {
        font-size: 23px !important;
    }

    .fs31 {
        font-size: 24px !important;
    }

    .fs32 {
        font-size: 25px !important;
    }

    .fs33 {
        font-size: 25px !important;
    }

    .fs34 {
        font-size: 26px !important;
    }

    .fs35 {
        font-size: 26px !important;
    }

    .fs36 {
        font-size: 27px !important;
    }

    /* Section titles */
    .storiesTitle,
    .bonusTitle,
    .learnTitle,
    .baTitle,
    .coachTitleGreen {
        font-size: 28px !important;
    }

    .coachNameGreen {
        font-size: 30px !important;
    }
}

/* Tablets & Large Phones (<=768px) */
@media (max-width: 768px) {

    h1 {
        font-size: 28px;
    }

    /* Section titles */
    .storiesTitle,
    .bonusTitle,
    .learnTitle,
    .baTitle,
    .coachTitleGreen {
        font-size: 26px !important;
    }

    .coachNameGreen {
        font-size: 28px !important;
    }

    .bonusText {
        font-size: 20px !important;
    }

    .learnHeader {
        font-size: 18px !important;
    }

    .learnDesc,
    .storiesDesc {
        font-size: 14px !important;
    }

    /* Fix FAQ capsule width + scale */
    .faqCapsuleGreen {
        max-width: 90% !important;
        padding: 12px 20px !important;
        font-size: 15px !important;
    }
}

/* Small Phones (<=480px) */
@media (max-width: 480px) {

    h1 {
        font-size: 24px;
    }

    /* Section titles */
    .storiesTitle,
    .bonusTitle,
    .learnTitle,
    .baTitle,
    .coachTitleGreen {
        font-size: 22px !important;
    }

    .coachNameGreen {
        font-size: 24px !important;
    }

    /* Content text */
    .learnHeader {
        font-size: 18px !important;
    }

    .learnDesc,
    .storiesDesc {
        font-size: 13px !important;
    }

    /* FAQ section spacing */
    .faqSectionGreen {
        padding-top: 100px !important;
    }

    /* FAQ capsule perfect mobile placement */
    .faqCapsuleGreen {
        width: 90% !important;
        font-size: 16px !important;
        padding: 14px 22px !important;
        transform: translate(-50%, -55%) !important;
    }

    /* Video height fix */
    .videoWrapper iframe {
        height: 200px !important;
    }
}

/* MASTERCLASS — FIX FOR TABLETS (<=992px) */
@media (max-width: 992px) {

    .masterClassDetails {
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 20px !important;
        row-gap: 20px !important;
        padding: 25px 20px !important;
        text-align: left !important;
    }

    .masterClassDetails .item {
        gap: 10px !important;
        justify-content: flex-start !important;
    }

    .masterClassDetails .icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        border-radius: 10px !important;
    }

    .masterClassDetails h5 {
        font-size: 14px !important;
    }

    .masterClassDetails h6 {
        font-size: 16px !important;
    }

    .masterClassDetailsTitle {
        font-size: 15px !important;
        padding: 6px 18px !important;
        top: -14px !important;
    }
}

/* MASTERCLASS — FIX FOR MOBILE (<=768px) */
@media (max-width: 768px) {

    .masterClassDetails {
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 15px !important;
        row-gap: 18px !important;
        padding: 20px 15px !important;
        text-align: center !important;
    }

    .masterClassDetails .item {
        justify-content: center !important;
        gap: 8px !important;
    }

    .masterClassDetails .icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
    }

    .masterClassDetails h5 {
        font-size: 13px !important;
    }

    .masterClassDetails h6 {
        font-size: 15px !important;
    }

    .masterClassDetailsTitle {
        font-size: 14px !important;
        top: -12px !important;
        padding: 6px 16px !important;
    }
}

/* MASTERCLASS — FIX FOR SMALL PHONES (<=480px) */
@media (max-width: 480px) {

    .masterClassDetails {
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 10px !important;
        row-gap: 15px !important;
        padding: 18px 12px !important;
        padding-top: 28px !important
    }

    .masterClassDetails .icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }

    .masterClassDetails h5 {
        font-size: 12px !important;
    }

    .masterClassDetails h6 {
        font-size: 14px !important;
    }

    .masterClassDetailsTitle {
        font-size: 13px !important;
        padding: 5px 14px !important;
        top: -10px !important;
    }
}

@media (max-width: 992px) {

    .baBox {
        padding: 30px 25px;
    }

    .baTitle {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .baUnderline {
        width: 50px;
        margin-bottom: 20px;
    }

    .baList li {
        font-size: 15px;
        margin-bottom: 15px;
        gap: 10px;
    }

    .crossIcon,
    .checkIcon {
        width: 20px;
        height: 20px;
        margin-top: 3px;
    }
}

@media (max-width: 480px) {

    .baBox {
        padding: 20px 16px;
    }

    .baTitle {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .baUnderline {
        width: 40px;
        margin-bottom: 16px;
    }

    .baList li {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.4;
        gap: 6px;
    }

    .crossIcon,
    .checkIcon {
        width: 16px;
        height: 16px;
        margin-top: 2px;
    }
}

/* ---------------------------------------
   BOTTOM BAR — MOBILE FIX (<=768px)
----------------------------------------*/
@media (max-width: 768px) {

    .bottomBar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 15px !important;
    }

    /* LEFT SIDE should stack */
    .priceBox,
    .timerText {
        width: 100% !important;
    }

    .leftStack {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 4px !important;
        flex: 1 !important;
    }

    /* TIMER styling */
    .timerText {
        margin: 0 !important;
        font-size: 14px !important;
    }

    /* BUTTON stays right side, same line */
    .registerBtn {
        white-space: nowrap !important;
        padding: 12px 22px !important;
        font-size: 15px !important;
    }
}

/* Small phones (<=480px) */
@media (max-width: 480px) {

    .offerPrice {
        font-size: 26px !important;
    }

    .actualPrice {
        font-size: 16px !important;
    }

    .timerText {
        font-size: 13px !important;
    }
}

.custom-checkbox {
    position: relative;
    padding-left: 35px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

/* invisible native checkbox placed over the checkmark */
.custom-checkbox input {
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.custom-checkbox .checkmark {
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #03b85a;
    background-color: white;
    pointer-events: none;
    /* important */
}

/* checked state styling */
.custom-checkbox input:checked+label+.checkmark {
    background-color: #03b85a;
    border-color: #03b85a;
}

.custom-checkbox input:checked+label+.checkmark::after {
    content: "✔";
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

.modal-header {
    background-color: var(--green);
}

.modal-header {
    padding: 20px 30px;
}

.modal-body {
    padding: 40px 30px;
}

@media(max-width:576px) {
    .custom-list li {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .modal-body {
        padding: 20px 30px;
    }
}