/*
Theme Name: Mahsuri Child
Template: mahsuri
Author: JayJay Ang | Shinrai Technology
Version: 1.0
*/

/* ========== IMPORT FONT FACE ========== */

@font-face {
    font-family: "Nunito";
    font-weight: 300;
    src: url("./assets/webfonts/Nunito-Regular.ttf");
}

@font-face {
    font-family: "Nunito";
    font-weight: 600;
    src: url("./assets/webfonts/Nunito-Bold.ttf");
}

@font-face {
    font-family: "Nunito";
    font-weight: 700;
    src: url("./assets/webfonts/Nunito-ExtraBold.ttf");
}

@font-face {
    font-family: "Gotham";
    font-weight: 300;
    src: url("./assets/webfonts/gothamrnd_book.otf");
}

@font-face {
    font-family: "Gotham";
    font-weight: 400;
    src: url("./assets/webfonts/gothamrnd_medium.otf");
}

@font-face {
    font-family: "Gotham";
    font-weight: 600;
    src: url("./assets/webfonts/gothamrnd_bold.otf");
}

@font-face {
    font-family: "Gotham";
    font-weight: 600;
    font-style: italic;
    src: url("./assets/webfonts/GothamRnd-BoldItalic.otf");
}

/* ========== DEFAULT STYLING ========== */

body {
    /* background: radial-gradient(
        ellipse at center top,
        #fee926 0%,
        #ffa500 30%,
        #db4f34 60%,
        #701e1a 100%
    ); */
    /*-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;*/
    background-color: #701e1a;
    min-height: 100vh;
    margin: 0;

    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Gotham", sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin: 0 !important;
    overflow-x: clip;
}

p {
    font-family: "Gotham", sans-serif;
    font-size: 18px;
    font-weight: 300;
}

a {
    color: #000000;
    outline: none;
    text-decoration: none;
}

a:focus,
a:focus-visible,
a:hover {
    outline: none;
    box-shadow: none;
}

a:visited {
    color: unset;
}

.nav-link:focus-visible {
    outline: none;
    box-shadow: none;
}

button.cta-button {
    background: linear-gradient(180deg, #fee700 -35%, #ed4324 44%, #7b1517);
    padding: 0.65em 1.3em; border: none; border-radius: 80px; cursor: pointer; transition: all 0.3s ease;
    font-family: "Nunito", sans-serif; font-weight: 600; text-transform: uppercase;
}
button.cta-button a { color: #ffffff; }
button.cta-button:hover { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }

/* ========== HEADER ========== */

nav.navbar {
    background-color: #ffffff;
    padding: 13px 30px;
    z-index: 2;
}

a.navbar-brand img {
    max-width: 150px;
    position: absolute;
    top: 10px;
    width: 100%;
}

button.navbar-toggler {
    border: unset;
    border-color: unset;
    padding: 5px;
}

button.navbar-toggler:focus {
    box-shadow: unset;
}

button.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba%2833, 37, 41, 0.75%29'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e"); background-size: 65%; }

.navbar-collapse {
    justify-content: flex-end;
}

ul#menu-mahsuri-menu {
    align-content: center;
    display: flex;
    margin: 0;
    padding: 0;
}

ul#menu-mahsuri-menu li {
    list-style-type: none;
    margin: 0 13px;
}

ul#menu-mahsuri-menu li a {
    font-size: 16px;
    font-weight: 700;
    padding: 5px;
    position: relative;
    text-transform: uppercase;
    transition: 0.3s;
}

ul#menu-mahsuri-menu li a::after {
    background-color: #c03733;
    bottom: 0;
    content: "";
    height: 4px;
    left: 50%;
    position: absolute;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    width: 0;
}

ul#menu-mahsuri-menu li a:hover,
ul#menu-mahsuri-menu li a:focus {
    color: #c03733;
}

ul#menu-mahsuri-menu li.current_page_item a {
    color: #c03733;
}

ul#menu-mahsuri-menu li a:hover::after,
ul#menu-mahsuri-menu li.current_page_item a::after {
    width: 100%;
}

.navbar-collapse button {
    margin: 0 0 0 13px;
}

@media (max-width: 991px) {
    nav.navbar { padding: 10px 13px; }

    a.navbar-brand img { max-width: 120px; }

    button.navbar-toggler { order: 1; }
    .navbar-collapse { order: 2; }
    .navbar button.cta-button { margin-left: auto; margin-right: 6px; font-size: 14px; }

    ul#menu-mahsuri-menu { align-items: flex-start; flex-direction: column; padding: 45px 0 0; }
    ul#menu-mahsuri-menu li { margin: 0 0 10px; width: 100%; }
    ul#menu-mahsuri-menu li a { display: block; padding: 5px 0 2px; }
    ul#menu-mahsuri-menu li a::after { height: 2px; }
    ul#menu-mahsuri-menu li a:hover::after { width: 0; }
}
@media (max-width: 767px) {
    nav.navbar { padding: 10px 0; }
    .navbar button.cta-button { max-width: 132px; padding: 0.8em 1.1em; font-size: 11px; }
}

/* ========== HOME BODY ========== */
.mahsuri-container { margin: auto; padding: 0; }
.mahsuri-x1000 { margin: auto; max-width: 1000px; }
.mahsuri-x1200 { margin: auto; max-width: 1200px; }
.mahsuri-x1400 { margin: auto; max-width: 1400px; }
.mahsuri-x1600 { margin: auto; max-width: 1600px; }

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 0.8; }
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* Popup animation for fried chicken */
@keyframes popupIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* === Reusable scroll animation classes === */
.scroll-fade-right { opacity: 0; transform: translateX(100px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.scroll-fade-left { opacity: 0; transform: translateX(-100px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.scroll-fade-up { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.scroll-fade-right.is-visible { opacity: 1; transform: translateX(0); }
.scroll-fade-left.is-visible { opacity: 1; transform: translateX(0); }
.scroll-fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* Animation delay classes for sequential entrance */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }



.mahsuri-event-image {
    background: radial-gradient(ellipse 121.9042% 187% at center top, #fee700 0%, #ed4324 30.1489%, #7b1517 100%);
    position: relative; text-align: center;
    padding-top: 4%; overflow: hidden;
}
.mahsuri-event-image:before {
    background-image: url(../../uploads/2025/10/mahsuri-home-section-1-bg.png);
    background-repeat: no-repeat; background-size: contain; background-position: center bottom;
    content: " "; width: 100%; /*height: 51%;*/ aspect-ratio: 16 / 11;
    position: absolute; left: 0; top: 17%;
}

.event-image-container { padding: 9.5% 0 1.65%; position: relative; }
.event-image-container:before {
    animation: fadeIn 0.8s ease-out;
    background-image: url("../../uploads/2025/10/light-rays-2.webp");
    background-repeat: no-repeat; background-size: cover; background-position: center;
    content: ""; width: 100%; height: 165%;
    position: absolute; left: 50%; top: -30%; transform: translate(-50%, 0);
    mix-blend-mode: overlay;
}

/* Fried chicken images - popup animation */
.mahsuri-fried-chicken { opacity: 0; position: absolute; }
.mahsuri-fried-chicken.animated { animation: popupIn 0.5s ease-out forwards; }
/* Staggered animation delays for each chicken */
.mahsuri-fried-chicken.chicken-1 { animation-delay: 0.2s; bottom: -39.6%; left: -26.6%; width: 57%; }
.mahsuri-fried-chicken.chicken-2 { animation-delay: 0.4s; bottom: 0.4%; right: -0.6%; width: 19.3%; }
.mahsuri-fried-chicken.chicken-3 { animation-delay: 0.6s; top: -0.4%; right: 10%; width: 29%;}
.mahsuri-fried-chicken.chicken-4 { animation-delay: 0.8s; top: -3%; right: 25%; width: 23.6%; transform: translateX(-50%); }
.mahsuri-fried-chicken.chicken-5 { animation-delay: 1s; top: -18%; left: 31.5%; width: 27.5%; }
/* Main title image - appears last with bounce */
.mahsuri-title-image {
    animation: bounceIn 1s ease-out 1.4s; animation-fill-mode: forwards; opacity: 0;
    width: 76.8%; margin: auto; margin-left: 2.3%; position: relative; z-index: 2;
}

.mahsuri-home-price { padding: 2rem 15px 5rem; position: relative; }
.mahsuri-home-price:before {
    background-image: url("../../uploads/2025/10/price-background-spinning.webp");
    background-position: center; background-repeat: no-repeat; background-size: auto 100%;
    content: " "; width: 100%; height: 50%;
    position: absolute; left: 0; bottom: 14%;
    transform: rotate(-20deg); transition: transform 1.5s ease-out; z-index: -1;
}
.mahsuri-home-price.is-visible:before { transform: rotate(0); }


@media only screen and (max-width: 1600px) {
    .event-image-container { width: 92%; }
}
@media only screen and (max-width: 991px) {
    .mahsuri-home-price:before { bottom: 9%; }
}

/*--*/
.mahsuri-home-price .price-items .price-info h4,
.mahsuri-home-price .price-items .price-info h2 { color: #ffffff; text-shadow: 1px 1px 3px rgba(68,33,19,0.75); }
.mahsuri-home-price .price-items .price-info h4 { font-size: min(max(11px, 1.6vw), 24px); font-weight: 300; letter-spacing: -0.5px; }
.mahsuri-home-price .price-items .price-info h2 { font-size: min(max(14px, 2vw), 28px); color: #ffffff; font-weight: 400; }
.mahsuri-home-price .price-items .price-info h2 span { font-size: 0.7em; display: block; }

.price-items,
.price-items .price-info { position: relative; z-index: 1; }

.price-items.second-price { margin: 0 0 30px 0; z-index: 0; }
.price-items.third-price { display: flex; flex-direction: column-reverse; align-items: flex-end; }

.price-items.first-price .price-info { max-width: 60%; width: 100%; top: 60px; }
.price-items.second-price .price-info { max-width: 60%; width: 100%; margin: 30px 30px 0 auto; }
.price-items.third-price .price-info { margin-right: 15%; }

.price-items.first-price .price-image { 
    margin: -22% -27% 0 auto; width: 108%; 
    /* safari */
    display: inline-block; float: right;
}
.price-items.second-price .price-image { margin: -28% 0 0 1%; width: 56%; }
.price-items.third-price .price-image { margin: 0 15% 10px 0; width: 40%; }
/*--*/
.monthly-price { margin: 2rem auto; }
.monthly-price h1 {
    font-family: "Nunito", sans-serif; 
    font-size: 55px; font-weight: 700; color: #ffffff; line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.monthly-price h1 span { font-size: 45px; font-weight: 300; }

.monthly-boxed { position: relative; }
.monthly-boxed:after {
    background-image: url("../../uploads/2025/10/price-adding.webp");
    background-position: center; background-repeat: no-repeat; background-size: 100%;
    content: " "; width: 60px; height: 60px;
    position: absolute; right: -12%; bottom: 50%;
}
.monthly-boxed ul {
    display: flex; flex-direction: row;
    margin: 0; padding: 0;
}
/*--*/
.wtunaicon {
    background-position: center; background-repeat: no-repeat; background-size: 100%;
    display: flex; align-items: center; flex-direction: column; justify-content: space-around;
    margin-bottom: 15px; width: calc(100% / 2); aspect-ratio: 16 / 10.5;
}
.wtunaicon .price-currency { text-align: left; }
.wtunaicon .price-currency h4,
.wtunaicon .price-currency h1 {
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background: linear-gradient(to top, #701e1a 0%, #db4f34 100%); background-clip: text;
    margin: 0;
}
.wtunaicon .price-currency h4 { font-weight: 600; }
.wtunaicon .price-currency h1 { position: relative; display: inline-block; font-weight: 800; }
.wtunaicon .price-currency h1:after {
    content: ''; width: 35%; aspect-ratio: 1;
    background-repeat: no-repeat; background-position: center; background-size: 168%;
    background-image: url(../../uploads/2025/10/price-shine.png);
    position: absolute; right: -13%; top: -30%; mix-blend-mode: hard-light;
}
.wtunaicon .price-title { margin-bottom: 7%; }
.wtunaicon .price-title h2 { font-weight: 700; color: #ffffff; margin: 0; }

.monthly-boxed .wtunaicon .price-currency { margin-top: 7%; }
.monthly-boxed .wtunaicon .price-currency h4 { font-size: min(max(15px, 2vw), 28px); }
.monthly-boxed .wtunaicon .price-currency h1 { font-size: min(max(25px, 4.5vw), 68px); }
.monthly-boxed .wtunaicon .price-title h2 { font-size: min(max(15px, 2.8vw), 35px); }
.monthly-extra-price .wtunaicon .price-currency { margin-top: 4%; }
.monthly-extra-price .wtunaicon .price-currency h1 { font-size: min(max(30px, 5vw), 45px); }
.monthly-extra-price .wtunaicon .price-currency h4 { font-size: min(max(15px, 2vw), 20px); }
.monthly-extra-price .wtunaicon .price-title h2 { font-size: min(max(13px, 1.8vw), 22px); }
/*--*/
.monthly-boxed ul.row-1 li h1:after,
.monthly-boxed ul.row-2 li:nth-child(1) h1:after { top: -44%; }
.monthly-boxed ul.row-2 li { width: calc(100% / 3); }
.monthly-boxed ul.row-2 li .price-currency h4 { font-size: min(max(10px, 2.5vw), 20px); }
.monthly-boxed ul.row-2 li .price-currency h1 { font-size: min(max(20px, 3vw), 45px); }
.monthly-boxed ul.row-2 li .price-title h2 { font-size: min(max(10px, 1.8vw), 22px); }
/*--*/
.monthly-price-image { text-align: right; }
.monthly-price-image h4 {
    max-width: 80%; margin: 0 0 20px auto;
    font-family: "Nunito", sans-serif; font-size: 20px; font-weight: 700; color: #ffffff; text-align: center;
}
.monthly-price-image img { max-width: 80%; }
/*--*/
.monthly-extra-price { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 30px; }
.monthly-extra-price > div { width: 300px; }
.monthly-extra-price h1 { font-size: 42px; font-weight: 600; color: #ffffff; }


@media all and (max-width: 1024px) {
    .mahsuri-home-price { padding: 10% 15px 3rem; }
    /*.mahsuri-home-price .price-items .price-info h2 { font-size: 26px; }
    .mahsuri-home-price .price-items .price-info h4 { font-size: 18px; }*/

    .price-items.third-price { align-items: center; }

    .price-items.first-price .price-info { top: 0; }
    .price-items.second-price .price-info { max-width: 100%; }

    .price-items.first-price .price-image { margin: -25% -10% 0 auto; width: 90%; }
    .price-items.second-price .price-image { margin: -40% 0 auto -17%; }
    .price-items.third-price .price-image { margin-top: -16%; width: 50%; }
}
@media all and (max-width: 991px) {
    /*.mahsuri-home-price .price-items .price-info h2 { font-size: 24px; }*/

    .monthly-price h1 { font-size: 38px; }
    .monthly-price h1 span { font-size: 26px; }

    .monthly-boxed { padding: 0 0 2rem; }
    .monthly-boxed:after { left: 0; right: 0; bottom: 0; width: 40px; height: 40px; margin: auto; }

    .monthly-price-image { padding: 1rem 0 0; text-align: center; }
    .monthly-price-image h4 { max-width: 100%; }

    .monthly-extra-price { gap: 10px; }
    .monthly-extra-price h1 { font-size: 32px; }
}
@media all and (max-width: 767px) {
    .price-items.second-price { margin: -20px 0 40px 0; }
    .price-items.second-price .price-info { margin: auto; }
    .price-items.third-price .price-info { margin-right: 0; }
    .price-items.first-price .price-image { margin: -25% 10% 0 auto; width: 60%; }
    .price-items.second-price .price-image { margin: -28% 0 auto 5%; width: 37%; }
    .price-items.third-price .price-image { margin: -20% 0% -10% auto; width: 38%; }

    .monthly-boxed { padding: 0 0 3rem; }
}
@media all and (max-width: 500px) {
    .mahsuri-title-image { width: 82.8%; }

    .mahsuri-home-price .price-items .price-info h4 { /*font-size: 12px;*/ margin-bottom: 2px; }
    /*.mahsuri-home-price .price-items .price-info h2 { font-size: 15px; }*/

    .price-items.first-price .price-info { max-width: 40%; }
    .price-items.second-price .price-info { max-width: 60%; margin: 5% 0 0 25%; }
    .price-items.third-price .price-info { margin-right: 26%; margin-top: -2%; }
    .price-items.first-price .price-image { margin: -33% 9% 0 auto; }
    .price-items.second-price .price-image { margin: -34% 0 auto 0; width: 40%; }
    .price-items.third-price .price-image { margin: -22% 0% -15% auto; width: 42%; }

    .monthly-price { margin: 50px 0 0; }
    .monthly-price h1 { font-size: 25px; }
    .monthly-price h1 span { font-size: 16px; }

    .monthly-price-image h4 { font-size: 18px; }

    .monthly-extra-price h1 { font-size: 22px; }
}

/* ========== Way to Win ========== */
.mahsuri-way-to-win {
    background-position: center; background-repeat: no-repeat; background-size: cover;
    padding: 4rem 15px; position: relative; z-index: 1;
}
.mahsuri-way-to-win h1 {
    font-size: 44px; font-weight: 600; line-height: 1.1; color: #d1262a; text-align: center;
    margin: 15px 0 30px;
}

.mahsuri-way-to-win .step-to-win { font-family: "Nunito", sans-serif; text-align: center; }
.mahsuri-way-to-win .step-to-win img { margin: 0 0 30px; height: 280px; object-fit: contain; }
.mahsuri-way-to-win .step-to-win h2 {
    font-size: 33px; font-weight: 700; line-height: 1.1; color: #d1262a;
    width: 80%; margin: 0 auto 10px;
}
.mahsuri-way-to-win .step-to-win p {
    font-size: 18px; line-height: 1.3;
    width: 80%; margin: 0 auto 10px;
}

.mahsuri-way-to-win .btn-link { font-family: "Nunito", sans-serif; font-size: 25px; font-weight: 600; color: #d1262a; }

@media all and (max-width: 991px) {
    .mahsuri-way-to-win { background-size: 100%; background-position: top center; padding: 3rem 10px; }
    .mahsuri-way-to-win h1 { font-size: 28px; margin-top: 0; }
    .mahsuri-way-to-win .step-to-win img { height: 200px; }
    .mahsuri-way-to-win .step-to-win h2 { font-size: 24px; width: 100%; }
    .mahsuri-way-to-win .step-to-win h2 br { display: none; }
    .mahsuri-way-to-win .step-to-win p { font-size: 15px; width: 100%; }
    .mahsuri-way-to-win .step-to-win.step-1 { margin: 0 0 50px; }
}
@media all and (max-width: 767px) {
    .mahsuri-way-to-win .step-to-win h2 { font-size: 26px; }
    .mahsuri-way-to-win .btn-link { font-size: 20px; }
}

/* ========== STEP TO JOIN ========== */
.step-to-join {
    background-position: center; background-repeat: no-repeat; background-size: 100%;
    padding: 5rem 25px; text-align: center;
    background-blend-mode: screen;
}
.step-to-join h1 {
    font-family: "Nunito", sans-serif; font-size: 48px; font-weight: 700; color: #ffffff; text-transform: uppercase;
    margin: 0 0 20px;
}
.step-to-join h3 {
    font-size: 33px; font-weight: 300; color: #ffffff;
    margin: 0 0 50px;
}

.step-cards-container {
    display: flex; gap: 30px;
    margin: 0 auto 40px; max-width: 1000px;
}
.step-card-wrapper {
    display: flex; flex-flow: column; flex: 1;
    margin: 0 -8px;
}
.step-card-wrapper:first-child { z-index: 2; }
.step-card-wrapper:nth-child(2) { z-index: 1; }
.step-card-wrapper:not(:last-child)::after {
    border-bottom: 28px solid transparent; border-left: 28px solid; border-top: 28px solid transparent;
    content: ""; width: 0; height: 0;
    position: absolute; right: -26px; bottom: 36px; transform: translateY(50%);
}
.step-card-wrapper:nth-child(1)::after { border-left-color: #fff; }
.step-card-wrapper:nth-child(2)::after { border-left-color: #fdd6be; }

.step-icon { margin: 0 0 20px; }
.step-icon img { height: 80px; width: 100px; object-fit: contain; }

.step-card {
    background-color: #ffffff; padding: 15px 10px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex; flex-grow: 1; align-items: flex-start; gap: 10px;
}
.step-card.card-white { background-color: #fff; }
.step-card.card-peach { background-color: #fdd6be; }

.step-card .step-number {
    font-family: "Nunito", sans-serif; font-size: 90px; font-weight: 700; color: #731f1c; line-height: 1;
    opacity: 0.4;
}
.step-card .step-text {
    display: flex; flex: 1; flex-direction: column; justify-content: center;
    text-align: left;
}
.step-card .step-text h2 {
    font-size: 36px; font-weight: 600; color: #7e1619; text-transform: uppercase; line-height: 1;
    margin: 0 0 5px;
}
.step-card .step-text p {
    font-size: 20px; font-weight: 400; color: #451716; line-height: 1.3;
    margin: 0;
}

.join-instructions { margin: 30px auto 40px; max-width: 900px; }
.join-instructions p {
    font-size: 18px; font-weight: 300; color: #ffffff; line-height: 1.4;
    margin: 0;
}

.step-to-join button.cta-button { font-size: 25px; }


@media all and (max-width: 991px) {
    .step-to-join h3 { font-size: 24px; }

    .step-icon img { height: 60px; width: 60px; }
    .step-card .step-number { font-size: 75px; }
    .step-card .step-text h2 { font-size: 30px; }
    .step-card .step-text p { font-size: 18px; }

    .join-instructions p { font-size: 18px; }
    .join-instructions p br { display: none; }

    .step-to-join button.cta-button { font-size: 20px; }
}
@media all and (max-width: 767px) {
    .step-to-join { padding: 3rem 25px; }
    .step-cards-container { align-items: center; flex-direction: column; }
    .step-card-wrapper { max-width: 310px; }
    .step-card-wrapper:not(:last-child)::after { display: none; }

    .step-to-join h1 { font-size: 28px; }
    .step-to-join h3 { font-size: 17px; margin-bottom: 35px; }

    .step-card .step-number { font-size: 65px; }
    .step-card .step-text h2 { font-size: 25px; }
    .step-card .step-text p { font-size: 15px; }

    .join-instructions p { font-size: 16px; }
}
@media all and (max-width: 500px) {
    .step-card-wrapper { max-width: 265px; }
    .step-icon { margin-bottom: 15px; }
    .step-icon img { height: 50px; width: 50px; }
    .step-card { padding: 15px 12px; }
    .step-card .step-number { font-size: 50px; }
    .step-card .step-text h2 { font-size: 20px; margin: 0 0 3px; }
    .step-card .step-text p { font-size: 13px; }

    .join-instructions { margin: 20px auto 30px; }
    .join-instructions p { font-size: 15px; }

    .step-to-join button.cta-button { font-size: 17px; }
}

/* ========== Online Shop ========== */
.online-shop {
    background-position: center, top 300px center, center; background-repeat: no-repeat; background-size: cover;
    padding: 4rem 15px; text-align: center;
}
.online-shop h1 {
    font-size: 32px; font-weight: 600; color: #ea2327; 
    margin: 0 0 10px; filter: drop-shadow(0px 0px 10px #fff);
}
.online-shop p { font-size: 24px; line-height: 1.3; }
.online-shop ul {
    display: flex; justify-content: center; align-items: center; gap: 20px;
    margin: 0; padding: 0;
}
.online-shop ul li { list-style: none; }
.online-shop ul li img { max-width: 200px; width: 100%; border-radius: 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); }

@media all and (max-width: 767px) {
    .online-shop { padding: 3rem 15px; }
    .online-shop h1 { font-size: 24px; }
    .online-shop p { font-size: 16px; }
    .online-shop ul { flex-direction: column; }
    .online-shop ul li img { max-width: 150px; }
}

/* ========== Footer ========== */
.footer { background-color: #3f3f3f; padding: 3rem 20px 30px; color: #ffffff; text-align: center; }
.footer p { font-family: "Nunito", sans-serif; font-size: 15px; line-height: 1.3; }
.footer li { list-style: none; }
.footer .disclaimer ul {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    max-width: 400px; margin: 0 auto 20px; padding: 0 20px;
}
.footer .disclaimer ul li { text-align: center; flex: 100%; }
.footer .disclaimer ul li a { display: inline-block; }
.footer .disclaimer ul li img { width: 90%; }
.footer .disclaimer ul li:first-child img { width: 70%; }

.footer .footer-logo {
    display: flex; justify-content: flex-start; align-items: center; gap: 35px;
    margin: 0; padding: 0;
}
.footer .footer-logo li:first-child { width: 180px; }
.footer .footer-logo li:not(:first-child) { width: 33px; }

.footer p.copyright {
    display: flex; justify-content: flex-end; align-items: center;
    height: 100%; margin: 0;
}

@media all and (max-width: 991px) {
    .footer .footer-logo { gap: 0; justify-content: center; }
    ul.footer-logo li img { width: 60%; }

    .footer p.copyright { justify-content: center; margin: 20px auto 0; height: auto; }
}
@media all and (max-width: 767px) {
    .footer p { font-size: 14px; }
}

/* ========== RESIPI BODY ========== */
.mahsuri-event-image.resipi .mahsuri-home-price:before { content: none; }
.mahsuri-video { margin: 3rem auto auto; }
.mahsuri-video .gx-c { --bs-gutter-x: 6rem; }
.mahsuri-video .title {
    font-family: "Nunito", sans-serif; font-size: 48px; font-weight: 700; color: #fff; line-height: 1.1;
    margin: 0 auto 50px;
}

.mahsuri-video .mahsuri-vid { margin: 0 0 60px; }
.mahsuri-video .mahsuri-vid .vid-thum {
    background-position: center; background-repeat: no-repeat; background-size: 100%;
    display: flex; align-items: center; min-height: 200px; aspect-ratio: 16 / 28.5; margin: 0 0 20px; position: relative; cursor: pointer;
    filter: drop-shadow(7px 7px 20px rgba(0,0,0,0.25));
}
.mahsuri-video .mahsuri-vid .vid-thum:before {
    background-image: url("../../uploads/2025/10/vid-play-2-2.png");
    background-position: center; background-repeat: no-repeat; background-size: contain;
    content: " "; width: 41%; height: 41%;
    position: absolute; left: 0; right: 0; margin: auto;
}
.mahsuri-video .mahsuri-vid h4 {
    font-family: "Nunito", sans-serif; font-size: 24px; font-weight: 600; color: #ffffff;
    margin: 0 0 20px;
}
/*--*/
.mahsuri-submit-receipt {
    background-position: top center; background-repeat: repeat-y; background-size: 100%;
    padding: 6rem 15px 7rem; position: relative;
}
.mahsuri-submit-receipt h1 {
    font-family: "Nunito", sans-serif; font-size: 42px; font-weight: 700; color: #d1262a; text-align: center;
    margin: 0 0 50px;
}
.mahsuri-submit-receipt h4 {
    max-width: 60%; margin: 80px auto 0;
    font-family: "Nunito", sans-serif; font-size: 32px; font-weight: 600; color: #010101; text-align: center;
}
.mahsuri-form { box-shadow: 0 7px 20px rgba(113,85,34,0.25); }
.mahsuri-submit-receipt ul {
    display: flex; justify-content: center; align-items: center; gap: 50px;
    margin: 25px 0 0; padding: 0; position: relative; z-index: 1;
}
.mahsuri-submit-receipt ul li { list-style: none; }
.mahsuri-submit-receipt ul li img { width: 50px; }
.mahsuri-submit-receipt .deco-left { position: absolute; bottom: -8%; left: 3%; width: 18%; }
.mahsuri-submit-receipt .deco-right { position: absolute; bottom: -6%; right: 3%; width: 15%; }

/*--*/
.msg-box.vid-box .modal-content { margin: auto; max-width: 500px; }
.msg-box.vid-box .modal-content::before { content: unset; }
.msg-box.vid-box .modal-content { background: none; border: none; border-radius: 20px; overflow: hidden; padding: 0; position: relative; }
.video-wrapper { align-items: center; display: flex; justify-content: center; padding: 20px; position: relative; z-index: 1; }
.video-wrapper video { border-radius: 15px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); height: auto; max-height: 80vh; max-width: 100%; width: auto; }
.msg-box.vid-box .btn-close { background-color: rgba(0,0,0,0.5); border-radius: 50%; filter: invert(1); opacity: 0.8; padding: 10px; position: absolute; right: 15px; transition: opacity 0.2s ease; top: 15px; z-index: 2; }
.msg-box.vid-box .btn-close:hover { opacity: 1; }

@media all and (min-width: 1025px) {
    .resipi .price-items.second-price .price-image { margin-left: -2%; }
    .resipi .mahsuri-home-price .price-items .price-info h4 { font-size: min(max(15px, 2vw), 24px); }
    .resipi .mahsuri-home-price .price-items .price-info h2 { font-size: min(max(15px, 2vw), 24px); }
}
@media all and (max-width: 991px) {
    .resipi .mahsuri-home-price { padding-bottom: 30px; }
    .mahsuri-video .gx-c { --bs-gutter-x: 4rem; }
    .mahsuri-video .title { font-size: 38px; }

    .mahsuri-submit-receipt h1 { font-size: 32px; margin-bottom: 35px; }
    .mahsuri-submit-receipt h4 { font-size: 24px; }
    .mahsuri-submit-receipt ul li img { width: 40px; }
    .mahsuri-submit-receipt .deco-left { bottom: -3%; width: 200px; }
    .mahsuri-submit-receipt .deco-right { bottom: -2%; width: 180px; }
}
@media all and (max-width: 767px) {
    .mahsuri-video .gx-c { --bs-gutter-x: 2rem; }
    .mahsuri-video .title { font-size: 28px; margin-bottom: 30px; }
    .mahsuri-video .mahsuri-vid .vid-thum { filter: drop-shadow(3px 3px 10px rgba(0,0,0,0.25)); }
    .mahsuri-video .mahsuri-vid h4 { font-size: 18px; }

    .mahsuri-submit-receipt { padding: 4rem 15px 5rem; }
    .mahsuri-submit-receipt ul { gap: 30px; }
    .mahsuri-submit-receipt h1 { font-size: 28px; margin-bottom: 25px; }
    .mahsuri-submit-receipt h4 { font-size: 20px; max-width: 95%; margin-top: 50px; }
    .mahsuri-submit-receipt .deco-left { bottom: -2%; width: 120px; }
    .mahsuri-submit-receipt .deco-right { bottom: -1%; width: 100px; }
}
@media all and (max-width: 500px) {
    .mahsuri-video { margin-top: 5rem; }
    .mahsuri-video .title { font-size: 24px; }
    .mahsuri-video .gx-c { --bs-gutter-x: 1rem; }
    .mahsuri-video .mahsuri-vid { margin-bottom: 40px; }
    .mahsuri-video .mahsuri-vid .vid-thum { margin-bottom: 12px; }
    .mahsuri-video .mahsuri-vid h4 { font-size: 16px; }
}

/* ========== TERMA N SYARAT BODY ========== */
.tnc-wrap {
    background-image: url(../../uploads/2025/10/way-to-win-bg.png), radial-gradient(ellipse 142% 60% at center top, #fee700 -10%, #ed4324 30.1489%, #7b1517 100%);
    background-repeat: space, no-repeat; background-size: 100%, cover; background-blend-mode: soft-light;
    font-family: "Nunito", sans-serif;
    padding: 0 15px;
}
.mahsuri-tnc-title { display: flex; flex-direction: row; justify-content: space-between; align-items: center; }
.mahsuri-tnc-title h1 { font-size: 42px; font-weight: 700; color: #ffffff; text-align: center; margin-bottom: 0; }
.mahsuri-tnc-title img { max-width: 500px; width: 100%; }

.mahsuri-tnc-desc { 
    background-color: #ffffff; border-radius: 30px; margin: 0 0 8rem; padding: 3em; 
    font-size: 18px; color: #000; line-height: 1.2; 
}
.mahsuri-tnc-desc b,
.mahsuri-tnc-desc strong { font-weight: 600; }
.mahsuri-tnc-desc h2 { font-size: 24px; font-weight: 700; margin: 0 0 20px; }
.mahsuri-tnc-desc h3 { font-size: 19px; font-weight: 700; margin: 0 0 3px; }
.mahsuri-tnc-desc p + h3 { margin-top: 25px; }
.mahsuri-tnc-desc p {
    display: table; margin: 0 0 10px;
    font-family: "Nunito", sans-serif; font-size: 17px; font-weight: 300;
}
.mahsuri-tnc-desc p span { display: table-cell; padding-right: 0.6em; }
.mahsuri-tnc-desc ul { margin: 0 0 24px; }
.mahsuri-tnc-desc ul li { display: table; }
.mahsuri-tnc-desc ul li + li { margin-top: 8px; }
.mahsuri-tnc-desc ul li span { display: table-cell; padding-right: 0.6em; }
.mahsuri-tnc-desc ul.list li { position: relative; padding-left: 16px; }
.mahsuri-tnc-desc ul.list li:before { content: '•'; position: absolute; left: 0; top: 0; }
.mahsuri-tnc-desc ul.list li span { min-width: 80px; width: min(13.5vw, 150px); }


@media all and (max-width: 767px) {
    .mahsuri-tnc-title { flex-direction: column; padding: 10px 10px 15px; }
    .mahsuri-tnc-title h1 { font-size: 28px; order: 1; margin-top: 25px; }
    .mahsuri-tnc-desc { border-radius: 20px; margin: 0 0 3.5rem; padding: 25px 20px; }
    .mahsuri-tnc-desc h2 { font-size: 21px; }
    .mahsuri-tnc-desc h3 { font-size: 17px; }
    .mahsuri-tnc-desc,
    .mahsuri-tnc-desc p { font-size: 15px; }
    .mahsuri-tnc-desc ul { padding: 0; }
}
