/* ==========================
   MMA MEMBERSHIP BANNER
========================== */

.mma-membership-banner{
    position: relative;
    background: #d7d7d7;
    overflow: hidden;
    padding: 90px 0;
}

.mma-membership-container{
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.mma-membership-content{
    padding-top:50px;
    flex: 0 0 50%;
    max-width: 50%;
       position:relative;
    z-index:5;

}
.mma-membership-subtitle{
    display:inline-block;
    position:relative;
    z-index:10;

    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;

    color:#d4a437;

    margin-bottom:20px;
    padding-left:18px;
}
.mma-membership-subtitle::before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:8px;
    height:8px;
    border-radius:50%;
    background:#d4a437;
}

.mma-membership-content h1{
    font-size: 62px;
    line-height: 1.1;
    font-weight: 700;
    color: #08245c;
    margin-bottom: 25px;
    font-family: 'Drose'!important;
}

.mma-membership-content p{
    font-size: 18px;
    line-height: 1.8;
    color: #5f6570;
    max-width: 700px;
    margin-bottom: 35px;
}

.mma-membership-features{
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mma-membership-feature{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #08245c;
    font-weight: 600;
    position: relative;
}

.mma-membership-feature i{
    color: #08245c;
    font-size: 22px;
}

.mma-membership-feature:not(:last-child)::after{
    content: "";
    width: 1px;
    height: 22px;
    background: #d7d7d7;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.mma-membership-image{
    position: absolute;
    right: 0;
    top: 0;
    width: 48%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.mma-membership-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity:0.08;
    filter: grayscale(100%);
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .mma-membership-banner{
        padding: 70px 0;
    }

    .mma-membership-container{
        flex-direction: column;
        text-align: center;
    }

    .mma-membership-content{
        max-width: 100%;
        flex: 100%;
    }

    .mma-membership-content h1{
        font-size: 52px;
    }

    .mma-membership-content p{
        font-size: 18px;
        margin-left: auto;
        margin-right: auto;
    }

    .mma-membership-features{
        justify-content: center;
    }

    .mma-membership-image{
        position: relative;
        width: 100%;
        margin-top: 40px;
        justify-content: center;
    }

    .mma-membership-image img{
        opacity: 0.15;
        max-width: 500px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px){

     .mma-membership-content
     {
        margin-top: 50px;
     }
    .mma-membership-banner{
        padding: 50px 0;
    }

    .mma-membership-content h1{
        font-size: 38px;
        line-height: 1.2;
    }

    .mma-membership-subtitle{
        margin-top:20px;
        font-size: 15px;
    }

    .mma-membership-content p{
        font-size: 16px;
        line-height: 1.7;
    }

    .mma-membership-features{
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .mma-membership-feature:not(:last-child)::after{
        display: none;
    }

    .mma-membership-image{
        margin-top: 25px;
    }

    .mma-membership-image img{
        opacity: 0.12;
    }
}

/* ===============================
   WHY JOIN MMA SECTION
================================= */

.mma-join-benefits-section{
    padding:120px 0;
    background:#fff;
    overflow:hidden;
}

.mma-join-image-wrap{
    position:relative;
}

.mma-join-image-wrap img{
    width:100%;
    border-radius:30px;
    display:block;
    transition:.5s;
}

.mma-join-image-wrap:hover img{
    transform:scale(1.03);
}

/* FLOATING CARDS */

.mma-floating-card{
    position:absolute;
    background:#fff;
    border-radius:18px;
    padding:20px 25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    text-align:center;
    animation:mmaFloat 4s ease-in-out infinite;
}

.mma-floating-card h3{
    color:#0b2c6a;
    font-size:32px;
    margin:0;
    font-weight:700;
}

.mma-floating-card span{
    font-size:14px;
    color:#666;
}

.card-one{
    top:40px;
    left:-30px;
}

.card-two{
    bottom:40px;
    right:-20px;
}

@keyframes mmaFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

/* CONTENT */

.mma-section-tag{
    display:inline-block;
    background:rgba(212,164,55,.12);
    color:#d4a437;
    padding:10px 20px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.mma-join-content h2{
    color:#0b2c6a;
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.mma-join-content p{
    color:#666;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

/* BENEFITS */

.mma-benefit-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;
}

.mma-benefit-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    padding:25px;
    transition:.4s;
}

.mma-benefit-card:hover{
    transform:translateY(-8px);
    border-color:#d4a437;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.mma-benefit-card i{
    width:60px;
    height:60px;
    background:#fdf4e3;
    color:#d4a437;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:15px;
}

.mma-benefit-card h4{
    color:#0b2c6a;
    margin-bottom:10px;
    font-size:20px;
}

.mma-benefit-card p{
    margin:0;
    font-size:15px;
    line-height:1.7;
}

/* BUTTON */

.mma-join-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#0b2c6a;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.4s;
}

.mma-join-btn:hover{
    background:#d4a437;
    color:#fff;
    transform:translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .mma-join-benefits-section{
        padding:80px 0;
    }

    .mma-join-image-wrap{
        margin-bottom:50px;
    }

    .mma-join-content h2{
        font-size:40px;
    }

    .card-one{
        left:10px;
    }

    .card-two{
        right:10px;
    }
}

@media(max-width:767px){

    .mma-benefit-grid{
        grid-template-columns:1fr;
    }

    .mma-join-content h2{
        font-size:32px;
    }

    .mma-floating-card{
        padding:15px;
    }

    .mma-floating-card h3{
        font-size:24px;
    }

    .mma-join-content p{
        font-size:16px;
    }
}

/* ==========================
   MEMBERSHIP TYPES
========================== */

.mma-membership-types-sec{
    padding:100px 0;
    background:#fdf4e3;
}

.mma-membership-heading{
    text-align:center;
    margin-bottom:70px;
}

.mma-membership-heading h2{
    color:#0b2c6a;
    font-size:42px;
    font-weight:700;
    position:relative;
    display:inline-block;
}

.mma-membership-heading h2:after{
    content:'';
    width:80px;
    height:4px;
    background:#d8a63c;
    position:absolute;
    left:50%;
    bottom:-18px;
    transform:translateX(-50%);
    border-radius:10px;
}

.mma-membership-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

/* CARD */

.mma-membership-card{
    background:#fff;
    border-radius:20px;
    overflow:visible;
    position:relative;
    padding:60px 40px 40px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.mma-membership-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* TOP BAR */

.mma-life-card .mma-card-top{
    height:22px;
    background:#08245c;
    position:absolute;
    left:0;
    right:0;
    top:0;
}

.mma-annual-card .mma-card-top{
    height:22px;
    background:#d8a63c;
    position:absolute;
    left:0;
    right:0;
    top:0;
}

/* ICON */

.mma-membership-icon{
    width:90px;
    height:90px;
    background:#d8a63c;
    border-radius:50%;
    position:absolute;
    left:50%;
    top:-45px;
    transform:translateX(-50%);
    border:5px solid #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.mma-membership-icon i{
    color:#fff;
    font-size:34px;
}

/* CONTENT */

.mma-membership-card h3{
    text-align:center;
    color:#08245c;
    font-size:34px;
    margin-bottom:25px;
    font-weight:700;
}

.mma-price{
    text-align:center;
    color:#08245c;
    font-size:56px;
    font-weight:800;
    margin-bottom:30px;
}

.mma-price::before{
    content:'';
    display:block;
    width:60px;
    height:3px;
    background:#d8a63c;
    margin:0 auto 20px;
}

.mma-membership-card ul{
    padding:0;
    margin:0 0 35px;
    list-style:none;
}

.mma-membership-card ul li{
    position:relative;
    padding-left:30px;
    margin-bottom:16px;
    color:#555;
    line-height:1.8;
}

.mma-membership-card ul li:before{
    content:'✓';
    position:absolute;
    left:0;
    top:0;
    color:#d8a63c;
    font-weight:bold;
}

/* BUTTON */

.mma-membership-btn{
    display:block;
    text-align:center;
    padding:18px;
    border-radius:12px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.mma-life-card .mma-membership-btn{
    background:#08245c;
}

.mma-life-card .mma-membership-btn:hover{
    background:#d8a63c;
}

.mma-annual-card .mma-membership-btn{
    background:#d8a63c;
}

.mma-annual-card .mma-membership-btn:hover{
    background:#08245c;
}

/* RESPONSIVE */

@media(max-width:991px){

    .mma-membership-grid{
        grid-template-columns:1fr;
        gap:70px;
    }

    .mma-membership-card h3{
        font-size:28px;
    }

    .mma-price{
        font-size:48px;
    }
}

@media(max-width:767px){

    .mma-membership-types-sec{
        padding:70px 0;
    }

    .mma-membership-heading h2{
        font-size:32px;
    }

    .mma-membership-card{
        padding:60px 25px 30px;
    }

    .mma-membership-card h3{
        font-size:24px;
    }

    .mma-price{
        font-size:40px;
    }

    .mma-membership-icon{
        width:75px;
        height:75px;
        top:-38px;
    }

    .mma-membership-icon i{
        font-size:28px;
    }
}
/* ====================================
   MMA MANDATORY FEES SECTION
==================================== */

.mma-mandatory-fees-section{
    padding:100px 0;
    background:#fff;
}

.mma-fees-title{
    text-align:center;
    margin-bottom:50px;
}

.mma-fees-title h2{
    color:#0b2c6a;
    font-size:32px;
    font-weight:700;
    display:inline-block;
    position:relative;
}

.mma-fees-title h2 span{
    font-size:14px;
    font-weight:500;
}

.mma-fees-title h2:after{
    content:'';
    width:70px;
    height:4px;
    background:#d6a63c;
    position:absolute;
    bottom:-15px;
    left:50%;
    transform:translateX(-50%);
    border-radius:10px;
}

/* CARDS */

.mma-fees-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    margin-bottom:30px;
}

.mma-fee-card{
    width:420px;
    padding:30px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:20px;
    transition:.4s;
}

.mma-fee-card:hover{
    transform:translateY(-8px);
}

.mma-fee-registration{
    background:#f4f7ff;
    border:1px solid #e3e8ff;
}

.mma-fee-fund{
    background:#f4fbf7;
    border:1px solid #dfeee4;
}

.mma-fee-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.mma-fee-registration .mma-fee-icon{
    background:#e7edff;
    color:#3c63d7;
}

.mma-fee-fund .mma-fee-icon{
    background:#e4f6ea;
    color:#27a95a;
}

.mma-fee-content h4{
    font-size:15px;
    color:#0b2c6a;
    margin-bottom:8px;
}

.mma-fee-content h3{
    font-size:32px;
    color:#0b2c6a;
    font-weight:700;
    margin:0;
}

/* PLUS */

.mma-fee-plus{
    width:60px;
    height:60px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    color:#0b2c6a;
    font-size:22px;
    flex-shrink:0;
}

/* NOTE */

.mma-fee-note{
    max-width:700px;
    margin:0 auto 35px;
    text-align:center;
    padding:14px 20px;
    border:1px solid #dfe5f5;
    border-radius:12px;
    color:#4562a3;
    background:#fff;
}

.mma-fee-note i{
    margin-right:8px;
}

/* TOTAL BOX */

.mma-total-amount-box{
    background:#08245c;
    border-radius:18px;
    padding:28px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    transition:.4s;
}

.mma-total-amount-box:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(8,36,92,.25);
}

.mma-total-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.mma-total-icon{
    width:65px;
    height:65px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.mma-total-left h3{
    color:#fff;
    margin:0;
    font-size:24px;
}

.mma-total-left h3 span{
    font-size:18px;
    font-weight:400;
    opacity:.8;
}

.mma-total-right{
    text-align:right;
}

.mma-total-right h2{
    font-size:36px;
    margin:0;
    color:#fff;
    font-weight:700;
}

.mma-total-right p{
    margin:5px 0 0;
    opacity:.85;
}

/* RESPONSIVE */

@media(max-width:991px){

    .mma-fees-wrapper{
        flex-direction:column;
    }

    .mma-fee-card{
        width:100%;
    }

    .mma-total-amount-box{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .mma-total-right{
        text-align:center;
    }
}

@media(max-width:767px){

    .mma-mandatory-fees-section{
        padding:70px 0;
    }

    .mma-fees-title h2{
        font-size:28px;
    }

    .mma-fees-title h2 span{
        display:block;
        font-size:18px;
        margin-top:5px;
    }

    .mma-fee-card{
        padding:20px;
        flex-direction:column;
        text-align:center;
    }

    .mma-fee-content h3{
        font-size:34px;
    }

    .mma-total-left{
        flex-direction:column;
        text-align:center;
    }

    .mma-total-left h3{
        font-size:16px;
    }

    .mma-total-right h2{
        font-size:32px;
    }
}

/* ====================================
   WHY BECOME A MEMBER
==================================== */

.mma-member-benefits-section{
    padding:100px 0;
    background:#fff;
    position:relative;
}

.mma-member-benefits-heading{
    text-align:center;
    margin-bottom:60px;
}

.mma-member-benefits-heading h2{
    color:#08245c;
    font-size:42px;
    font-weight:700;
    position:relative;
    display:inline-block;
}

.mma-member-benefits-heading h2:after{
    content:'';
    width:70px;
    height:4px;
    background:#d6a63c;
    position:absolute;
    left:50%;
    bottom:-15px;
    transform:translateX(-50%);
    border-radius:20px;
}

/* GRID */

.mma-member-benefits-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

/* CARD */

.mma-member-benefit-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
}

/* GOLD TOP BAR */

.mma-member-benefit-card:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#d6a63c;
    transform:scaleX(0);
    transition:.4s;
}

.mma-member-benefit-card:hover:before{
    transform:scaleX(1);
}

.mma-member-benefit-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    border-color:#d6a63c;
}

/* ICON */

.mma-benefit-icon{
    width:75px;
    height:75px;
    margin:0 auto 20px;
    background:#fff8e8;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.mma-benefit-icon i{
    font-size:30px;
    color:#d6a63c;
    transition:.4s;
}

.mma-member-benefit-card:hover .mma-benefit-icon{
    background:#d6a63c;
    transform:rotateY(180deg);
}

.mma-member-benefit-card:hover .mma-benefit-icon i{
    color:#fff;
    transform:rotateY(180deg);
}

/* TEXT */

.mma-member-benefit-card h4{
    color:#08245c;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.mma-member-benefit-card p{
    color:#666;
    font-size:15px;
    line-height:1.9;
    margin:0;
}

/* TABLET */

@media(max-width:1199px){

    .mma-member-benefits-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

/* MOBILE */

@media(max-width:767px){

    .mma-member-benefits-section{
        padding:70px 0;
    }

    .mma-member-benefits-heading h2{
        font-size:30px;
    }

    .mma-member-benefits-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .mma-member-benefit-card{
        padding:30px 20px;
    }

    .mma-member-benefit-card h4{
        font-size:20px;
    }

    .mma-benefit-icon{
        width:65px;
        height:65px;
    }

    .mma-benefit-icon i{
        font-size:26px;
    }

}
.mma-member-benefit-card{
    animation: mmaFloatCard 5s ease-in-out infinite;
}

.mma-member-benefit-card:nth-child(2){
    animation-delay:.5s;
}
.mma-member-benefit-card:nth-child(3){
    animation-delay:1s;
}
.mma-member-benefit-card:nth-child(4){
    animation-delay:1.5s;
}
.mma-member-benefit-card:nth-child(5){
    animation-delay:2s;
}

@keyframes mmaFloatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-6px);
    }
}
/* ====================================
   MMA MEMBERSHIP CTA
==================================== */

.mma-membership-cta{
    padding:40px 0 100px;
    background:#fff;
}

.mma-membership-cta-inner{
    background:linear-gradient(135deg,#08245c,#001a4a);
    border-radius:24px;
    padding:35px 50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(8,36,92,.15);
}

/* Glow Effect */

.mma-membership-cta-inner::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(214,166,60,.08);
    border-radius:50%;
    right:-150px;
    top:-120px;
}

.mma-membership-cta-inner::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
    left:-100px;
    bottom:-100px;
}

/* ICON BOX */

.mma-membership-cta-icon{
    width:140px;
    height:140px;
    border:2px solid rgba(255,255,255,.12);
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    flex-shrink:0;
    transition:.4s;
}

.mma-membership-cta-icon:hover{
    transform:translateY(-8px);
}

.mma-membership-cta-icon > i{
    font-size:58px;
    color:#d6a63c;
}

.mma-membership-cta-icon span{
    width:42px;
    height:42px;
    background:#d6a63c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    right:18px;
    bottom:18px;
}

.mma-membership-cta-icon span i{
    color:#08245c;
    font-size:18px;
}

/* CONTENT */

.mma-membership-cta-content{
    flex:1;
}

.mma-membership-cta-content h2{
    color:#fff;
    font-size:32px;
    margin-bottom:12px;
    font-weight:700;
}

.mma-membership-cta-content p{
    color:rgba(255,255,255,.85);
    font-size:15px;
    line-height:1.8;
    margin:0;
}

/* BUTTON */

.mma-membership-cta-action{
    text-align:center;
}

.mma-membership-join-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#d6a63c;
    color:#fff;
    padding:18px 45px;
    border-radius:12px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.4s;
}

.mma-membership-join-btn:hover{
    background:#fff;
    color:#08245c;
    transform:translateY(-4px);
}

.mma-membership-join-btn i{
    transition:.4s;
}

.mma-membership-join-btn:hover i{
    transform:translateX(6px);
}

.mma-membership-cta-tags{
    color:rgba(255,255,255,.8);
    margin-top:15px;
    font-size:15px;
    font-weight:500;
    letter-spacing:.5px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .mma-membership-cta-inner{
        flex-direction:column;
        text-align:center;
        padding:40px 30px;
    }

    .mma-membership-cta-content h2{
        font-size:34px;
    }

    .mma-membership-cta-content p{
        font-size:17px;
    }
}

@media(max-width:767px){

    .mma-membership-cta{
        padding:20px 0 70px;
    }

    .mma-membership-cta-inner{
        padding:30px 20px;
        border-radius:20px;
    }

    .mma-membership-cta-icon{
        width:110px;
        height:110px;
    }

    .mma-membership-cta-icon > i{
        font-size:45px;
    }

    .mma-membership-cta-content h2{
        font-size:28px;
    }

    .mma-membership-cta-content p{
        font-size:15px;
    }

    .mma-membership-join-btn{
        width:100%;
        justify-content:center;
    }
}
.mma-membership-cta-icon{
    width:140px;
    height:140px;
    border:2px solid rgba(255,255,255,.12);
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:.4s;
    overflow:hidden;
    background:rgba(255,255,255,.03);
}

.mma-membership-cta-icon img{
    width:85px;
    height:auto;
    transition:.4s ease;
}

.mma-membership-cta-icon:hover{
    transform:translateY(-8px);
    border-color:rgba(214,166,60,.4);
}

.mma-membership-cta-icon:hover img{
    transform:scale(1.08);
}