

.card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .4s ease forwards;
}

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



.answerWrapper {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}


.faqContainer {
    width: 100%;
    max-width: 1024px;
    margin: 120px auto 0 auto;
    padding: 20px;
    border-radius: 10px;
}

.titleFaq {
    text-align: center;
    font-size: 58px;
    font-weight: bold;
    margin-bottom: 60px;

}

.faqList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faqItem {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.question {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: #000;
    border-radius: 8px;
    transition: all 0.3s ease;

}

.question:hover {
    background-color: #007bff;
    color: #fff;
    transition: all 0.3s ease;
}

.icon {
    font-size: 20px;
}

.answerWrapper {
    overflow: hidden;
}

.answer {
    padding: 10px 15px;
    font-size: 16px;
    background: white;
    color: #333;
    border-top: 1px solid #dddddd62;
}



@media (max-width: 1024px) {
    .faqContainer {
        padding: 0;
        margin-top: 80px;
    }

    .titleFaq {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .question {
        font-size: 16px;
        padding: 12px;
    }

    .answer {
        font-size: 15px;
        padding: 10px 12px;
    }

    .icon {
        font-size: 18px;
    }
}



@media (max-width: 576px) {
    .faqContainer {
        padding: 0;
        margin-top: 60px;
    }

    .titleFaq {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .question {
        font-size: 15px;
        padding: 10px;
    }

    .answer {
        font-size: 14px;
        padding: 8px 10px;
    }

    .icon {
        font-size: 16px;
    }
}


.heroContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 40%;
}

.heroImage {
    display: block;
    width: 50%;
}

.heroImage img {
    display: block;
    object-fit: contain;
    width: 100%;
    height: auto;
    border: none;
    border-radius: 15px;
}

.heroTitle {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.highlight {
    color: #007bff;
}

.heroSubtitle {
    font-size: 18px;
    max-width: 80%;
}

.ctaButtons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.btnPrimary,
.btnSecondary {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btnPrimary {
    background: #007bff;
    color: #fff;
}

.btnPrimary:hover {
    background: #0056b3;
}

.btnSecondary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btnPrimary {
    border: 2px solid #007bff;
}

.btnSecondary:hover {
    background: rgba(0, 123, 255, 0.2);
}

@media (max-width: 1024px) {
    .heroContainer {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .hero,
    .heroImage {
        width: 100%;
    }

    .heroTitle {
        font-size: 42px;
        margin-bottom: 20px;
        max-width: 60%;
    }

    .heroSubtitle {
        font-size: 18px;
        max-width: 50%;
    }

    .ctaButtons {
        margin: 40px 0;
        display: flex;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .heroTitle {
        font-size: 32px;
        max-width: 100%;
    }

    .heroSubtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .btnPrimary,
    .btnSecondary {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .ctaButtons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 20px 0;
    }

    .btnPrimary,
    .btnSecondary {
        padding: 8px 10px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
}



.motivationContainer {
    background: #000;
    padding: 90px;
    text-align: center;
    border-radius: 20px;
    margin: 120px auto;
    width: 100%;
    background-image: url("../../../assets/images/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.heading {
    font-size: 73px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.heading span {
    color: #007bff;
}

.text {
    font-size: 21px;
    color: #d3d3d3;
    margin-bottom: 50px;
}

.buttonMotivation {
    display: inline-block;
    padding: 12px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border: 1px solid #007bff;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.buttonMotivation:hover {
    background: #0052aa;
    border: 1px solid #007bff;
}


@media screen and (max-width: 1024px) {
    .motivationContainer {
        padding: 70px 40px;
        margin: 80px auto;
    }

    .heading {
        font-size: 52px;
    }

    .text {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .buttonMotivation {
        padding: 10px 18px;
        font-size: 16px;
    }
}

@media screen and (max-width: 610px) {
    .motivationContainer {
        padding: 50px 20px;
        margin: 60px auto;
        border-radius: 16px;
    }

    .heading {
        font-size: 36px;
    }

    .text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .buttonMotivation {
        padding: 10px 16px;
        font-size: 15px;
    }
}


.card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 400px;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.badge {
    background-color: #913dff;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
}

.price {
    font-size: 28px;
    font-weight: bold;
    margin: 16px 0;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #393939;
    font-size: 14px;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.checkIcon {
    width: 16px;
    height: 16px;
    color: #007bff;
}

.button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.popular {
    border: 2px solid #007bff;
}



@media (max-width: 1024px) {
    .card {
        min-width: 320px;
        padding: 20px;
    }

    .price {
        font-size: 24px;
    }

    .features li {
        font-size: 13px;
    }
}


@media (max-width: 576px) {
    .card {
        width: 100%;
        min-width: unset;
        padding: 18px;
    }

    .price {
        font-size: 22px;
        margin: 12px 0;
    }

    .features li {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .badge {
        font-size: 11px;
        padding: 3px 8px;
    }

    .button {
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }
}


.pricingWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.pricingCards {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;

}

.pricingTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
    width: 100%;
}


.pricingTitle h1{
    font-size: 58px;
    line-height: 1;
}

.pricingTitle p{
    font-size: 21px;
    line-height: 1;
}


@media (max-width: 1024px) {
    .pricingTitle h1 {
        font-size: 42px;
        text-align: center;
    }

    .pricingTitle p {
        font-size: 18px;
        text-align: center;
    }

    .pricingCards {
        gap: 16px;
    }
}


@media (max-width: 576px) {
    .pricingTitle h1 {
        font-size: 32px;
    }

    .pricingTitle p {
        font-size: 16px;
        padding: 0 10px;
    }

    .pricingCards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}



.modalContainer {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    width: 550px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}



.modalContainer.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
    z-index: 9999;
}


.modalBackdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    backdrop-filter: blur(0px);
    background-color: rgba(0,0,0,0);
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.modalBackdrop.active {
    opacity: 1;
    backdrop-filter: blur(6px);
    background-color: rgba(0,0,0,0.5);
    pointer-events: all;
}



.modalBackdrop.active .modalContainer {
    transform: translateY(0);
    opacity: 1;
}



body.modal-open {
    overflow: hidden;
}


.modalTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.modalTitle h1 {
    font-size: 36px;
    line-height: normal;
    color: #000;
}

.modalTitle h1 span {
    color: #007bff;
}

.modalTitle p {
    color: #000000bb;
    font-size: 18px;
}


.modalContainer form {
    margin-top: 30px;
}

.modalContainer label {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    gap: 10px;
    font-size: 14px;
    color: #000000bb;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: black;
    transition: all 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus {
    border: 1px solid #007bff;
}


.radioGroupTitle {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    color: #000000bb;
}

.radioGroup {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
}

.radioGroup label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    border: 1px solid #818181bb;
    border-radius: 10px;
    font-size: 14px;
    padding: 15px;
    width: 100%;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.radioGroup label:hover {
    background-color: #007bffe4;
    color: #fff;
    transition: all 0.3s ease-in-out;
}


.submitBtn {
    margin-top: 15px;
    padding: 12px;
    border: none;
    background: #007bff;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

.submitBtn:hover {
    background: #007bff85;
}

.submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


.closeBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: black;
    transition: all 0.2s ease;
}

.closeBtn svg {
    width: 15px;
    height: 15px;
}


.dropdownGiftCard {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.dropdownButtonGiftCard {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
}

.dropdownButtonGiftCard:focus {
    border-color: #007bff;
    outline: none;
}

.dropdownMenuGiftCard {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    visibility: hidden;
    transform: scaleY(1);
    transform-origin: top;
    transition: transform 0.25s ease, opacity 0.25s ease;
    animation: none;
}

.dropdownMenuGiftCard.active {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    animation: scale-down-center 0.3s ease-out forwards;
}

.dropdownMenuGiftCard:not(.active) {
    opacity: 0;
    visibility: hidden;
    animation: scale-up-center 0.3s ease-in forwards;
}

@keyframes scale-down-center {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes scale-up-center {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.5);
    }
}

.dropdownItemGiftCard {
    padding: 10px;
    text-align: left;
    font-size: 14px;
    color: black;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdownItemGiftCard:hover,
.dropdownItemGiftCard.selected {
    background-color: #007bff;
    color: white;
}

.error {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    text-align: left;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 18px;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    z-index: 9999;
}

.toast.success {
    background: #16a34a;
}

.toast.error {
    background: #dc2626;
}

@media (max-width: 1024px) {
    .modalContainer {
        width: 90%;
        padding: 20px;
        max-height: 80%;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .modalTitle h1 {
        font-size: 28px;
    }

    .modalTitle p,
    .modalContainer label,
    .radioGroupTitle,
    .dropdownButtonGiftCard {
        font-size: 16px;
    }

    input[type="text"],
    input[type="email"] {
        font-size: 16px;
    }

    .submitBtn {
        font-size: 13px;
        padding: 10px;
    }
}


@media (max-width: 576px) {
    .modalContainer {
        width: 95%;
        padding: 15px;
    }

    .modalTitle h1 {
        font-size: 24px;
        text-align: center;
    }

    .modalTitle p {
        font-size: 14px;
        text-align: center;
    }

    .modalContainer label,
    .radioGroupTitle,
    .dropdownButtonGiftCard {
        padding: 8px;
        font-size: 13px;
    }

    input[type="text"],
    input[type="email"] {
        font-size: 13px;
        padding: 8px;
    }

    .submitBtn {
        font-size: 12px;
        padding: 10px;
    }

    .dropdownMenuGiftCard {
        font-size: 13px;
    }

    .dropdownItemGiftCard {
        font-size: 13px;
    }

    .closeBtn svg {
        width: 14px;
        height: 14px;
    }
}


