﻿@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

.brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: #d4af37;
    line-height: 1.1;
    margin: 15px 0 10px;
    text-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.brand-logo {
    width: 140px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.brand-title {
    font-family: 'Oswald', serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4af37;
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgba(212,175,55,.2);
}
.brand-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    color: #d6d6d6;
    font-weight: 400;
}
.plan-name {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #d4af37;
}
.membership-card {
    background: #1b1b1b;
    border: 1px solid #2f2f2f;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all .3s ease;
}

    .membership-card:hover {
        transform: translateY(-5px);
        border-color: #d4af37;
        box-shadow: 0 10px 25px rgba(212,175,55,.25);
    }

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
}

.plan-duration {
    color: #c8c8c8;
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: #9a9a9a;
    font-size: 1.2rem;
}

.offer-price {
    font-size: 2.5rem;
    color: #D4AF37;
    font-weight: bold;
}

.save-badge {
    display: inline-block;
    margin-top: 10px;
    background: #D4AF37;
    color: #000;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
}

.plan-image {
    max-height: 220px;
    width: auto;
}

.register-btn {
    margin-top: 20px;
    background: #D4AF37;
    color: #000;
    border-radius: 40px;
    padding: 12px 35px;
    font-weight: 600;
    border: none;
}

    .register-btn:hover {
        background: #f1c84b;
        color: #000;
    }

#plan .membership-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg,#1b1b1b,#222);
    border: 1px solid rgba(212,175,55,.15);
    border-radius: 28px;
    padding: 45px;
    margin-bottom: 35px;
    transition: .35s ease;
    box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

    #plan .membership-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(212,175,55,.12), transparent 40%);
        pointer-events: none;
    }

    #plan .membership-card:hover {
        transform: translateY(-10px);
        border-color: #d4af37;
        box-shadow: 0 30px 70px rgba(212,175,55,.18);
    }

#plan .plan-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#plan .plan-name {
    font-size: 2.4rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 6px;
}

#plan .plan-duration {
    color: #d6d6d6;
    font-size: 1.15rem;
    margin-bottom: 25px;
}

#plan .price-section {
    margin-bottom: 30px;
}

#plan .original-price {
    color: #888;
    font-size: 1.4rem;
    text-decoration: line-through;
}

#plan .offer-price {
    color: #d4af37;
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1;
    margin: 10px 0;
}

#plan .save-badge {
    display: inline-block;
    background: linear-gradient(135deg,#d4af37,#f3d46f);
    color: #111;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: .95rem;
}

#plan .register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 15px 38px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    background: linear-gradient(135deg,#d4af37,#f3d46f);
    border: none;
    transition: .3s;
    box-shadow: 0 12px 30px rgba(212,175,55,.25);
}

    #plan .register-btn:hover {
        transform: translateY(-3px);
        background: #fff;
        color: #000;
    }

#plan .plan-image {
    max-height: 260px;
    object-fit: contain;
    transition: .4s;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,.45));
}

#plan .membership-card:hover .plan-image {
    transform: scale(1.05);
}
#plan {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

    #plan .membership-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    #plan img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    #plan .save-badge {
        width: auto !important;
        flex: 0 0 auto;
    }

    #plan .save-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        max-width: fit-content;
        padding: 10px 20px;
        border-radius: 999px;
        background: linear-gradient(135deg, #d4af37, #f3d46f);
        color: #111;
        font-weight: 700;
        white-space: nowrap;
    }

.register-btn {
    background: linear-gradient(135deg, #d4af37, #f3d46f);
    color: #111;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 700;
    min-width: 170px;
    transition: .3s;
}

    .register-btn:hover {
        transform: translateY(-2px);
        color: #111;
    }

.register-btn-outline {
    background: transparent;
    color: #9ca3af;
    border: 2px solid #d4af37;
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 700;
    min-width: 170px;
    transition: .3s;
}

    .register-btn-outline:hover {
        background: #6c757d;
        border-color: #6c757d;
        color: #fff;
    }

.registration-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

    .registration-actions .btn {
        flex: 1;
        min-width: 0;
    }

.registration-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    color: #333;
}

    .registration-actions .btn {
        flex: 1;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        padding: 0;
        margin-top:1px
    }


.register-btn {
    color: #333;
    background: linear-gradient(135deg, #d4af37, #f3d46f);
    color: #111;
    border: none;
}

    .register-btn:hover {
        color: #111;
    }

.registration-actions .register-btn-outline,
.registration-actions .register-btn-outline:link,
.registration-actions .register-btn-outline:visited {
    color: #9ca3af !important;
    border: none;
    background: transparent;
    box-shadow: none;
}

    .registration-actions .register-btn-outline:hover {
        color: #d4af37 !important;
        background: transparent;
    }

.success-table {
    color: #fff;
}

    .success-table td {
        color: #fff !important;
        font-weight: 500;
    }

    .success-table th {
        color: #d4af37 !important;
        font-weight: 600;
        width: 45%;
    }

    .success-table tr {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

        .success-table tr:last-child {
            border-bottom: none;
        }

    .success-table td {
        color: #fff !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

.registration-table td {
    word-break: break-word;
    overflow-wrap: anywhere;
}
.payment-loading {
    position: fixed;
    inset: 0;
    background: rgba(17,17,17,.95);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

    .payment-loading h4 {
        margin-top: 20px;
        margin-bottom: 10px;
        color: #D4AF37;
    }

    .payment-loading p {
        margin: 0;
        max-width: 350px;
        text-align: center;
        color: #d5d5d5;
        line-height: 1.6;
    }

.d-none {
    display: none !important;
}

/* ==========================================
   FOOTER
========================================== */

.footer {
    background: #111;
    border-top: 1px solid rgba(212,175,55,.2);
    padding: 18px 0;
}

    .footer p {
        margin: 0;
        color: #bdbdbd;
        font-size: 15px;
    }

.footer-line {
    display: inline;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-body {
    flex: 1;
}

.summary-alert {
    background-color: #0f0f0f !important;
}
/*.footer-line:not(:last-child)::after {
        content: " • ";
    }*/
/* Media */
@media (max-width: 768px) {

    .footer-line {
        display: block;
    }

        .footer-line::after {
            content: "";
        }

    .footer p {
        line-height: 1.6;
        font-size: 14px;
    }
}

@media (min-width:1200px) {
    #plan .membership-card {
        padding: 55px;
    }

    #plan .plan-image {
        max-height: 300px;
    }
}

@media (max-width:991px) {
    #plan .membership-card {
        padding: 35px;
        text-align: center;
    }

    #plan .plan-content {
        align-items: center;
    }

    #plan .plan-image {
        margin-top: 35px;
        max-height: 240px;
    }
}

@media (max-width:767px) {
    #plan .membership-card {
        padding: 25px 20px;
        border-radius: 22px;
    }

    #plan .plan-name {
        font-size: 2rem;
    }

    #plan .offer-price {
        font-size: 2.6rem;
    }

    #plan .original-price {
        font-size: 1.2rem;
    }

    #plan .register-btn {
        width: 100%;
        padding: 15px;
    }

    #plan .plan-image {
        max-height: 190px;
        margin-top: 25px;
    }
}

@media (max-width:420px) {
    #plan .plan-name {
        font-size: 1.8rem;
    }

    #plan .offer-price {
        font-size: 2.3rem;
    }

    #plan .plan-duration {
        font-size: 1rem;
    }
}
@media (max-width:767px) {

    #plan .row {
        margin-left: 0;
        margin-right: 0;
    }

    #plan [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width:767px) {

    .brand-title {
        font-size: 17px;
        line-height: 1.2;
    }

    #plan .plan-name {
        font-size: 1.9rem;
    }

    #plan .offer-price {
        font-size: 2.5rem;
    }
}

@media (max-width:767px) {

    #plan .membership-card .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    #plan .plan-content {
        align-items: center;
    }

    #plan .plan-image {
        margin-bottom: 20px;
        margin-top: 0;
        max-height: 180px;
    }

    #plan .register-btn {
        width: 100%;
    }
}

@media (max-width:768px) {

    .brand-name {
        font-size: 2.3rem;
        letter-spacing: 2px;
    }

    .brand-title {
        font-size: 17px;
        letter-spacing: 2px;
    }
}
@media (max-width: 992px) {
    .brand-name {
        font-size: 3rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2rem;
        letter-spacing: 7px;
    }
}
@media (max-width: 768px) {
    .brand-logo {
        width: 110px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        width: 90px;
    }
}

/* ==========================
   Mobile Layout
========================== */

@media (max-width: 767px) {

    #plan .membership-card {
        padding: 30px 20px;
        border-radius: 24px;
    }

        #plan .membership-card .row {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin: 0;
        }

        #plan .membership-card .col-lg-4,
        #plan .membership-card .col-md-5,
        #plan .membership-card .col-lg-8,
        #plan .membership-card .col-md-7 {
            width: 100%;
            max-width: 100%;
            padding: 0;
        }

    /* Image first */
    #plan .plan-image {
        display: block;
        margin: 0 auto 25px;
        max-width: 180px;
        max-height: 220px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    /* Center content */
    #plan .plan-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #plan .plan-name {
        font-size: 2.1rem;
        margin-bottom: 8px;
    }

    #plan .plan-duration {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    #plan .original-price {
        font-size: 1.4rem;
    }

    #plan .offer-price {
        font-size: 3rem;
        line-height: 1;
        margin: 12px 0;
    }

    #plan .save-badge {
        margin: 0 auto 25px;
    }

    #plan .register-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px;
        border-radius: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    .registration-actions {
        gap: 10px;
    }

        .registration-actions .btn {
            flex: 1;
            min-width: 0;
            padding: 12px 16px;
            font-size: 0.95rem;
            border-radius: 40px;
            white-space: nowrap;
        }

    .register-btn-outline {
        padding-left: 12px;
        padding-right: 12px;
        color: #9ca3af;
    }
}


/* Mobile Background */
.mobile-bg-image {
    display: none;
}

@media (max-width:767px) {

    #plan .membership-card {
        position: relative;
        overflow: hidden;
        border-radius: 32px;
        background: #171717;
        padding: 0;
        isolation: isolate;
        border: 1px solid rgba(212,175,55,.15);
    }

    /* Background Image */
    .mobile-bg-image {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        opacity: .95;
        z-index: 0;
        /* Slight zoom hides blur edges */
        transform: scale(1.05);
    }

    /* Premium Dark Overlay */
    #plan .membership-card::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient( to bottom, rgba(0,0,0,.18) 0%, rgba(0,0,0,.28) 25%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.82) 62%, rgba(0,0,0,.94) 78%, #171717 100% );
    }

    /* Soft vignette */
    #plan .membership-card::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: radial-gradient(circle, transparent 35%, rgba(0,0,0,.18) 70%, rgba(0,0,0,.55) 100%);
    }

    /* Hide desktop image */
    #plan .plan-image {
        display: none;
    }

    #plan .row {
        margin: 0;
        position: relative;
        z-index: 3;
    }

    #plan .plan-content {
        padding: 0 25px 35px;
        margin-top: 330px; /* Move content lower */

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #plan .plan-name {
        font-size: 2.6rem;
        color: #d4af37;
        margin-bottom: 8px;
        text-shadow: 0 3px 10px rgba(0,0,0,.6);
    }

    #plan .plan-duration {
        color: #fff;
        font-size: 1.2rem;
        margin-bottom: 25px;
        text-shadow: 0 2px 8px rgba(0,0,0,.7);
    }

    #plan .original-price {
        color: rgba(255,255,255,.6);
        font-size: 1.5rem;
    }

    #plan .offer-price {
        font-size: 2rem;
        line-height: 1;
        color: #d4af37;
        text-shadow: 0 4px 15px rgba(0,0,0,.5);
    }

    #plan .save-badge {
        margin-bottom: 35px;
        padding: 12px 24px;
        font-size: 1rem;
    }

    #plan .register-btn {
        width: 100%;
        padding: 18px;
        font-size: 1.15rem;
        border-radius: 999px;
        margin-bottom:15px;
    }
}

#plan .register-btn {
    box-shadow: 0 0 25px rgba(212,175,55,.22), 0 12px 35px rgba(212,175,55,.18);
}

/*#plan .offer-price {
    letter-spacing: -2px;
    font-weight: 800;
}*/

@media (max-width:767px) {
    .mobile-bg-image {
        display: block;
    }
}
.mobile-bg-image {
    display: none !important;
}

/* Show only on Mobile */
@media (max-width: 767px) {

    .mobile-bg-image {
        display: block !important;
    }

    /* Hide the desktop image */
    #plan .plan-image {
        display: none !important;
    }
}