* {
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #1a0731;
    --white-color: #f1f6f7;
    --primary-color: #b78e2e;
    --secondary-color: #af69ab;
    --dark-color: #2c1635;
}

body {
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    background: var(--bg-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "General Sans", sans-serif;
    font-weight: 600;
}

.theme-btn {
    color: #ece4ed;
    background: transparent;
    font-size: 16px;
    font-family: "General Sans", sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    display: inline-block;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    box-shadow: 4px 4px var(--primary-color);
}

.theme-btn:hover {
    transform: translate(2px);
    box-shadow: 0px 0px;
    transition: all 0.3s;
}

.download-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.download-links img {
    height: 60px;
}

/* ==================================================
                    Header Style
=================================================== */
header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    transition: background-color 0.3s ease;
    z-index: 9999;
}

header.scrolled,
header.menu-open {
    background-color: #1e0933;
}

.navbar {
    padding: 1.4rem 0;
    align-items: center;
}

.navbar-brand img {
    max-height: 44px;
}

.navbar-nav {
    column-gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: #dad6db;
    font-size: 17px;
    font-family: "Satoshi", sans-serif, system-ui, -apple-system;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
    transition: all 0.3s;
}

/* ==================================================
                    Hero Style
=================================================== */

.hero {
    background: url("../img/banner-bg.webp") no-repeat;
    background-size: cover;
    background-position: top;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    z-index: 0;
}

.hero::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #14041b, rgb(0 13 53 / 75%));
    opacity: 0.5;
    z-index: -1;
}

.hero::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #170021, rgb(0 0 0 / 0%));
    opacity: 0.25;
    z-index: -1;
}

.hero .row {
    min-height: 100vh;
    align-items: center;
    padding: 120px 0 60px 0;
}

.hero h1 {
    color: var(--white-color);
    font-size: 3.5rem;
    font-style: italic;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.hero h1 span {
    color: #d0a643;
}

.hero p {
    color: #dad6db;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin-bottom: 2.75rem;
}

.hero .download-links {
    margin-top: 2rem;
}

.hero .img-wrapper {
    max-width: 400px;
    margin: 30px auto 0 auto;
}

/* ==================================================
                    Features Style
=================================================== */

.features {
    padding: 140px 0;
    background: linear-gradient(90deg, #1b072e, #1a0938);
}

.feature-block {
    margin-bottom: 140px;
}

.feature-block.alt .image-wrapper {
    text-align: right;
}

.feature-block h2 {
    color: #ece4ed;
    font-size: 2.75rem;
    line-height: 1.2;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-wrap: pretty;
}

.feature-block p {
    color: #c9c4cb;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.feature-block img {
    max-width: 400px;
}

.feature-block .theme-btn {
    padding-top: 16px;
    padding-bottom: 16px;
    margin-top: 2.25rem;
}

/* ==================================================
                Experience Tour Style
=================================================== */
.experience-tour {
    padding: 120px 0 140px;
    background: linear-gradient(0deg, #1a0731, #1f0533, #221e43);
}

.experience-tour h2 {
    color: #ece4ed;
    font-size: 3.4rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 5rem;
}

.gx-6 {
    --bs-gutter-x: 6rem;
}

.exp-tour {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.exp-tour .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(0deg, #3d3353, #3c2d5c);
    position: relative;
    overflow: hidden;
}

.exp-tour .swiper-slide span {
    position: absolute;
    top: 30px;
    right: 30px;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    background: #e2d1ff;
    color: #14041b;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
}

.step {
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 14px;
    background: linear-gradient(130deg, #3d3353, #3c2d5c);
    font-size: 18px;
    font-weight: 600;
    transform: scale(1);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    opacity: 0.8;
}

.step.active {
    color: #25173f;
    background: linear-gradient(135deg, #f0e8fd, #dcc6ff);
    opacity: 1;
}

/* ==================================================
                Testimonials Style
=================================================== */
.testimonials {
    padding: 120px 0 0;
    background: linear-gradient(0deg, #1a0731, #1f0533, #221e43);
}

.testimonials h2 {
    color: #ece4ed;
    font-size: 3.4rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonials p {
    color: #c4bdd2;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 5rem;
}

.testimonial {
    height: 100%;
    padding: 30px 30px;
    background: linear-gradient(177deg, #352a4d, #20173b);
    border-radius: 16px;
}

.testimonial p {
    color: #d0cadd;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    text-wrap: pretty;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author>img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    border: 3px solid #bfb4d3;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-author h3 {
    color: #d4cde1;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin: 5px 0 3px;
}

.testimonial-author ul {
    display: flex;
    align-items: center;
    gap: 3px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.testimonial-author ul img {
    height: 12px;
    opacity: 0.85;
}

.testimonial-pagination {
    margin-top: 3rem;
    text-align: center;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 36px;
    height: 7px;
    display: inline-block;
    border-radius: 8px;
    background: #ffffff;
    opacity: 0.25;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 0.6;
}

/* ==================================================
                    Download Style
=================================================== */
.download {
    padding: 140px 30px;
    background: #1a0731;
}

.download .cta-card {
    /* background: linear-gradient(172deg, #1a0731, #23193d, #1a0731); */
    background: linear-gradient(176deg, #251b3e, #23193d, #AF69AB 130%);
    padding: 80px 80px;
    border-radius: 30px;
    /* border: 2px solid #271b40; */
}

.download .cta-card h2 {
    color: #efecf0;
    font-size: 2.8rem;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.download .download-links {
    justify-content: flex-end;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* ==================================================
                    Footer Style
=================================================== */
footer {
    padding: 80px 0;
    background: linear-gradient(0deg, #1f0533, #221e43);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    position: relative;
}

footer .brand-logo {
    max-height: 48px;
    margin-bottom: 1.5rem;
}

footer p {
    color: #d4cde1;
    font-size: 18px;
    font-weight: 500;
    max-width: 480px;
    margin-bottom: 0;
}

footer h3 {
    color: #f0e8fd;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin: 4rem 0 1.5rem 0;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 8px;
    flex-direction: column;
}

footer a {
    color: #d4cde1;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

footer a:hover {
    color: var(--primary-color);
    transition: all 0.3s;
}

.social-accounts {
    flex-direction: row;
    gap: 14px;
}

.social-accounts img {
    max-width: 36px;
}

.copyright {
    color: #c4bdd2;
    font-size: 16px;
    font-style: italic;
    margin-top: 1.5rem;
    margin-bottom: 0;
    position: relative;
    bottom: -30px;
}

footer .mythy {
    max-width: 130px;
    position: absolute;
    bottom: 0;
    right: 40px;
}

/* ==================================================
                    Responsive Style
=================================================== */
@media screen and (max-width: 1399.98px) {
    .hero h1 {
        font-size: 3.25rem;
    }

    .hero .img-wrapper {
        max-width: 380px;
        margin: 30px 0 0 auto;
    }

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

    .feature-block img {
        max-width: 380px;
    }

    .experience-tour h2,
    .testimonials h2 {
        font-size: 3.25rem;
    }

    .steps {
        gap: 24px;
    }

    .step {
        font-size: 17px;
        padding: 18px 24px;
    }

    .testimonials p {
        font-size: 18px;
    }

    .download .cta-card {
        padding: 70px 70px;
    }

    .download .cta-card h2 {
        font-size: 2.75rem;
    }

    .download .download-links {
        margin-bottom: 0.25rem;
    }

    footer p {
        max-width: 400px;
    }
}

@media screen and (max-width: 1199.98px) {
    .navbar-nav {
        padding: 10px 0 30px;
        gap: 12px;
    }

    .navbar-toggler {
        border: 1px solid #77688d;
        border-radius: 50%;
        padding: 10px;
        aspect-ratio: 1 / 1;
    }

    .navbar-toggler-icon {
        width: 1.25em;
        height: 1.25em;
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba%28255, 255, 255, 100%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
    }

    .navbar-brand img {
        max-height: 40px;
    }

    header .theme-btn {
        margin-top: 0.5rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

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

    .download-links img {
        height: 54px;
    }

    .hero .img-wrapper {
        max-width: 320px;
        margin: 20px 0 0 auto;
    }

    .features {
        padding: 120px 0;
    }

    .feature-block {
        margin-bottom: 100px;
    }

    .feature-block h2 {
        font-size: 2.25rem;
    }

    .feature-block p {
        font-size: 16px;
    }

    .feature-block img,
    .feature-block .image-wrapper.alt img {
        max-width: 340px !important;
    }

    .experience-tour {
        padding: 100px 0 120px;
    }

    .gx-6 {
        --bs-gutter-x: 3.5rem;
    }

    .experience-tour h2 {
        margin-bottom: 4rem;
    }

    .experience-tour h2, .testimonials h2 {
        font-size: 2.75rem;
    }

    .exp-tour .swiper-slide span {
        top: 24px;
        right: 24px;
        font-size: 14px;
    }

    .step {
        font-size: 16px;
    }

    .testimonials {
        padding: 100px 0 0;
    }

   .testimonials h2 {
        margin-bottom: 1rem;
   }

   .testimonials p {
        font-size: 16px;
        margin-bottom: 4rem;
    }

    .testimonial p {
        font-size: 17px;
        margin-bottom: 2rem;
    }

    .testimonial-author h3 {
        font-size: 16px;
    }

    .download {
        padding: 120px 0px;
    }

    .download .cta-card {
        padding: 60px 60px;
    }

    .download .cta-card h2 {
        font-size: 2.25rem;
    }

    .download .download-links {
        margin-bottom: 0;
        gap: 16px;
    }

    footer {
        padding: 60px 0 80px;
    }

    footer .brand-logo {
        max-height: 44px;
        margin-bottom: 1.5rem;
    }

    footer p {
        font-size: 16px;
    }

    footer h3 {
        font-size: 1.4rem;
    }

    footer .mythy {
        max-width: 100px;
        right: 30px;
    }
}

@media screen and (max-width: 991.98px) {
    .hero .row {
        padding: 180px 0 100px 0;
    }

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

    .hero .download-links,
    .cta-card .download-links {
        justify-content: center;
    }

    .hero .img-wrapper {
        max-width: 380px;
        margin: 80px auto 0;
    }

    .features {
        padding: 100px 0 120px;
    }
    
    .feature-block {
        text-align: center;
        margin-bottom: 100px;
    }

    .feature-block .image-wrapper,
    .feature-block.alt .image-wrapper {
        text-align: center;
        margin-bottom: 1rem;
    }

    .feature-block.alt .row {
        flex-direction: column-reverse;
    }

    .feature-block img, .feature-block .image-wrapper.alt img {
        max-width: 380px !important;
    }

    .feature-block h2 {
        font-size: 2.5rem;
    }

    .feature-block p {
        font-size: 18px;
    }

    .steps {
        margin-top: 60px;
    }


    .download {
        padding: 100px 0px;
    }

    .download .cta-card {
        padding: 70px 60px 80px;
        text-align: center;
    }

    .download .cta-card h2 {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }

    footer .mythy {
        max-width: 150px;
        right: 60px;
    }
}

@media screen and (max-width: 767.98px) {
    .navbar {
        padding: 1rem 0;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero .img-wrapper {
        max-width: 360px;
    }

    .feature-block img, .feature-block .image-wrapper.alt img {
        max-width: 360px !important;
    }

    .feature-block h2 {
        font-size: 2.25rem;
    }

    .feature-block p {
        font-size: 17px;
    }

    .experience-tour h2, .testimonials h2 {
        font-size: 2.4rem;
    }

    .step {
        font-size: 18px;
    }

    .testimonial-pagination {
        margin-top: 1rem;
    }

    .download .cta-card h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .download .cta-card {
        padding: 70px 50px;
    }

    footer .mythy {
        max-width: 120px;
    }        
}

@media screen and (max-width: 575.98px) {
    .theme-btn,
    .feature-block .theme-btn {
        font-size: 15px;
        padding-top: 14px;
        padding-bottom: 14px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .container {
        --bs-gutter-x: 3rem;
    }

    .navbar-brand img {
        max-height: 36px;
    }

    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }

    .hero {
        background-position: left;
    }

    .hero .row {
        padding: 160px 0 80px 0;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 17px;
        text-wrap: pretty;
        margin-bottom: 2rem;
    }

    .hero .download-links, .cta-card .download-links {
        gap: 1rem;
        width: 350px;
        max-width: 100%;
        margin: auto;
    }

    .hero .img-wrapper {
        width: 340px;
        max-width: 100%;
        margin-top: 4rem;
    }

    .features {
        padding: 80px 0 120px;
    }

    .feature-block h2 {
        font-size: 2rem;
        letter-spacing: 0.25px;
    }

    .image-wrapper {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .feature-block img, .feature-block .image-wrapper.alt img {
        max-width: 300px !important;
    }

    .experience-tour h2 {
        margin-bottom: 3.5rem;
    }

    .experience-tour h2, .testimonials h2 {
        font-size: 2.25rem;
        letter-spacing: 0.25px;
        text-wrap: pretty;
    }

    .steps {
        margin-top: 48px;
    }

    .exp-tour .swiper-slide span {
        top: 20px;
        right: 20px;
        font-size: 13px;
        padding: 8px 15px;
    }

    .step {
        font-size: 16px;
        padding: 18px 22px;
        border-radius: 10px;
    }

    .exp-tour {
        border-radius: 20px;
    }

    .testimonials p {
        margin-bottom: 3.5rem;
        text-wrap: balance;
    }

    .testimonial p {
        margin-bottom: 2rem;
    }

    .testimonial-pagination .swiper-pagination-bullet {
        width: 30px;
        height: 6px;
    }

    .download .cta-card {
        padding: 50px 30px;
        border-radius: 20px;
    }

    .download .cta-card h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 2rem;
        letter-spacing: 0.25px;
        text-wrap: balance;
    }

    footer {
        padding: 60px 0;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    footer .brand-logo {
        max-height: 38px;
        margin-bottom: 1.5rem;
    }

    footer h3 {
        font-size: 1.4rem;
        margin-top: 2.25rem;
        margin-bottom: 1rem;
    }

    .copyright {
        font-size: 14px;
    }

    footer .mythy {
        max-width: 130px;
        right: 20px;
    }
}

@media screen and (max-width: 399.98px) {
    .navbar-nav {
        padding: 24px 0 30px;
        gap: 10px;
    }

    .navbar-toggler {
        padding: 8px;
    }

    .navbar-toggler-icon {
        transform: scale(0.95);
    }

    .hero h1 {
        font-size: 8.8vw;
    }

    .testimonial-pagination {
        margin-top: 1.5rem;
    }

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

    .hero .img-wrapper {
        width: 300px;
    }

    .features {
        padding: 80px 0 100px;
    }

    .feature-block {
        text-align: center;
        margin-bottom: 80px;
    }

    .feature-block .image-wrapper, .feature-block.alt .image-wrapper {
        margin-bottom: 0;
    }

    .feature-block img, .feature-block .image-wrapper.alt img {
        max-width: 280px !important;
    }

    .feature-block h2 {
        font-size: 1.8rem;
    }

    .feature-block p {
        font-size: 16px;
    }

    .experience-tour {
        padding: 80px 0 90px;
    }

    .experience-tour h2, .testimonials h2 {
        font-size: 2rem;
    }

    .experience-tour h2 {
        margin-bottom: 3rem;
    }

    .exp-tour .swiper-slide span {
        top: 15px;
        right: 15px;
        font-size: 12px;
        padding: 6px 13px;
    }

    .steps {
        margin-top: 40px;
    }

    .step {
        padding: 16px 20px;
    }

    .testimonials {
        padding: 80px 0 0;
    }

    .testimonials p {
        margin-bottom: 3rem;
    }

    .testimonial p {
        margin-bottom: 1.75rem;
    }

    .download {
        padding: 90px 0px;
    }

    .download .cta-card {
        padding: 50px 30px;
    }

    .download .cta-card h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .cta-card .download-links {
        gap: 20px;
        width: 200px;
        flex-direction: column;
    }

    footer a {
        font-size: 16px;
    }

    .social-accounts img {
        max-width: 30px;
    }

    .copyright {
        font-size: 15px;
        max-width: 60%;
        text-wrap: balance;
    }

    footer .mythy {
        max-width: 120px;
    }
}