html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

/* =========================================
   NAVBAR
========================================= */

.custom-navbar {
    padding: 24px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(128, 0, 128, 0.15);
}

.brand-logo {
    width: 69px;
    height: 69px;
    object-fit: contain;
}

.brand-title {
    color: #c21882;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.nav-link {
    color: #a2008f;
    font-weight: 600;
}

.active-nav {
    position: relative;
}

.active-nav::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: #8a00d4;
}

.login-btn {
    min-width: 130px;
    height: 44px;
    border-radius: 30px;
    border: 1px solid #d5008f;
    background: transparent;
    color: #a2008f;
    font-weight: 600;
    transition: 0.3s ease;
    font-size: 20px;
}

.login-btn:hover {
    background: #8a00d4;
    color: #ffffff;
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    padding: 40px 0 70px;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.hero-image {
    width: 100%;
    min-height: 650px;
    max-height: 760px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
}

.hero-content {
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 900px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 95px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    color: #ffffff;
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-btn {
    height: 60px;
    min-width: 260px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #7d0bd1, #d5008f);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

/* =========================================
   MEMBERSHIP SECTION
========================================= */

.membership-section {
    padding-bottom: 90px;
}

.membership-wrapper {
    border: 1px solid rgba(128, 0, 128, 0.18);
    border-radius: 32px;
    background: #ffffff;
    padding: 70px 50px;
}

.membership-title {

    text-align: center;

    font-size: clamp(38px, 6vw, 90px);

    font-weight: 800;

    letter-spacing: clamp(2px, 1vw, 12px);

    line-height: 1.2;

    background: linear-gradient(120deg,
            #7d0bd1 20%,
            #ffffff 100%,
            #7d0bd1 60%);

    background-size: 200% auto;

    color: transparent;

    -webkit-background-clip: text;
    background-clip: text;

    transition: 0.5s ease;

    cursor: pointer;

    word-break: keep-all;
}

/* SHINE EFFECT */

.membership-title:hover {
    background-position: 200% center;
}

.membership-card {
    border: 1px solid rgba(128, 0, 128, 0.18);
    border-radius: 22px;
    padding: 35px 30px;
    background: #ffffff;
    height: 100%;
    transition: 0.3s ease;
}

.membership-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.membership-card:hover {
    border-color: #b000ff;
}

.membership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(128, 0, 128, 0.12);
}

.membership-card h3 {
    font-size: 34px;
    font-weight: 700;
}

.plan-badge {
    border: 1px solid #8a00d4;
    border-radius: 30px;
    padding: 5px 14px;
    color: #8a00d4;
    font-size: 12px;
    font-weight: 700;
}

.plan-desc {
    color: #7b7b7b;
    font-size: 15px;
    line-height: 1.7;
    min-height: 50px;
}

.price-box {
    font-size: 42px;
    font-weight: 700;
    margin: 25px 0;
}

.price-box span {
    font-size: 16px;
    color: #888;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 500;
}

.feature-list i {
    color: #7d0bd1;
    margin-right: 10px;
}

.feature-list .disabled {
    color: #aaa;
}

.membership-btn {
    position: relative;

    width: 100%;
    height: 54px;

    border: none;
    border-radius: 10px;

    background: linear-gradient(90deg, #7d0bd1, #b000ff);

    color: #ffffff;

    font-size: 17px;
    font-weight: 600;

    margin-top: 20px;

    overflow: hidden;

    transition: all 0.35s ease;
}

/* HOVER TRANSFORM */

.membership-btn:hover {
    transform: translateY(-3px) scale(1.02);

    box-shadow: 0 10px 25px rgba(125, 11, 209, 0.35);
}

/* SHINE EFFECT */

.membership-btn::before {
    content: '';

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.45),
            transparent);

    transition: all 0.6s ease;
}

.membership-btn:hover::before {
    left: 100%;
}

/* =========================================
   FOOTER
========================================= */

.footer-section {
    background: linear-gradient(180deg, #7b0cbf, #8a00d4);
    padding: 90px 0 40px;
    color: #ffffff;
}

.footer-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icons i {
    font-size: 28px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 22px;
    margin-top: 50px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.footer-line {
    margin: 60px 0 40px;
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-disclaimer h6 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    max-width: 1200px;
    line-height: 1.9;
    font-size: 15px;
}

.copyright-text {
    margin-top: 40px;
    font-size: 14px;
}

/* =========================================
   PAYMENT MODAL
========================================= */

.payment-modal {
    border: none;
    border-radius: 26px;

    padding: 40px 32px;

    overflow: hidden;

    background: #ffffff;

    box-shadow: 0 20px 60px rgba(125, 11, 209, 0.18);
}

/* CLOSE */

.custom-close {
    position: absolute;

    right: 22px;
    top: 22px;

    z-index: 2;
}

/* ICON */

.payment-icon-wrapper {
    display: flex;
    justify-content: center;

    margin-bottom: 30px;
}

.payment-icon-circle {
    width: 95px;
    height: 95px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,
            #7d0bd1,
            #c000ff);

    box-shadow: 0 12px 30px rgba(125, 11, 209, 0.30);
}

.payment-icon-circle i {
    color: #ffffff;
    font-size: 42px;
}

/* CONTENT */

.payment-modal-body {
    text-align: center;
}

.payment-modal-body h2 {
    font-size: 34px;
    font-weight: 700;

    color: #2c2c2c;

    margin-bottom: 18px;

    line-height: 1.4;
}

.payment-modal-body p {
    font-size: 17px;

    color: #666;

    line-height: 1.8;

    margin-bottom: 14px;
}

.payment-sub-text {
    font-weight: 500;
}

/* BUTTONS */

.payment-btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;

    margin-top: 34px;

    flex-wrap: wrap;
}

.contact-btn,
.whatsapp-btn {
    min-width: 190px;
    height: 52px;

    border: none;
    border-radius: 12px;

    font-size: 16px;
    font-weight: 600;

    transition: 0.3s ease;
}

/* CONTACT */

.contact-btn {
    background: linear-gradient(90deg,
            #7d0bd1,
            #b000ff);

    color: #ffffff;
}

.contact-btn:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 24px rgba(125, 11, 209, 0.25);
}

/* WHATSAPP */

.whatsapp-btn {
    background: #f5f5f5;

    color: #222;

    border: 1px solid #ddd;
}

.whatsapp-btn:hover {
    background: #25d366;
    color: #ffffff;

    transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 576px) {

    .payment-modal {
        padding: 32px 20px;
    }

    .payment-modal-body h2 {
        font-size: 26px;
    }

    .payment-modal-body p {
        font-size: 15px;
    }

    .contact-btn,
    .whatsapp-btn {
        width: 100%;
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1600px) {

    .hero-content h1 {
        font-size: 85px;
    }

    .membership-title {
        font-size: 60px;
    }
}

@media (max-width: 991px) {

    .hero-image {
        height: 620px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .membership-title {
        font-size: 44px;
        letter-spacing: 5px;
    }

    .membership-wrapper {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {

    .hero-image {
        height: 520px;
    }

    .hero-content {
        left: 5%;
        right: 5%;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-btn {
        width: 100%;
        min-width: auto;
    }

    .membership-title {
        font-size: 30px;
        letter-spacing: 2px;
    }

    .brand-title {
        font-size: 18px;
    }

    .footer-title {
        font-size: 28px;
    }
}