* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fde8cf;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* Custom Scrollbar Styles */
html {
    scrollbar-width: thin;
    scrollbar-color: #0D4142 #fde8cf;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #fde8cf;
}

::-webkit-scrollbar-thumb {
    background-color: #0D4142;
    border-radius: 6px;
    border: 3px solid #fde8cf;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #AA8553;
}

/* FIXED TOP BAR */
.fixed-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 2.5px solid #AA8553;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
    padding-top: 44px; /* Offset for fixed top bar */
    padding-bottom: 42px; /* Base offset for fixed bottom bar */
}

.top-bar-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3b30;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #ff3b30;
    animation: blink 1.2s infinite ease-in-out;
}

.live-label {
    color: #0D4142;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-family: 'Inter', sans-serif;
}

.top-bar-btn {
    display: inline-block;
    background: #AA8553;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    border: 1px solid rgba(170, 133, 83, 0.15);
}

.top-bar-btn:hover {
    background: #8e6b41;
    transform: scale(1.05);
}

@keyframes blink {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.9);
        box-shadow: 0 0 4px #ff3b30;
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 0 0 12px #ff3b30;
    }
}

/* FIXED BOTTOM BAR */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 2.5px solid #AA8553;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 2px 0;
    transition: transform 0.3s ease;
}

.bottom-bar-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6px 10px 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bottom-bar-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.bottom-bar-price .original-price {
    font-size: .7rem;
    text-decoration: line-through;
    color: rgba(30, 41, 59, 0.5);
}

.bottom-bar-price .current-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0D4142;
}

.bottom-bar-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0D4142;
    font-weight: 600;
    font-size: 0.85rem;
}

.bottom-bar-timer .timer-label {
    color: rgba(13, 65, 66, 0.75);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.bottom-bar-timer .timer-countdown {
    font-family: monospace;
    color: #0D4142;
    font-size: 0.95rem;
    background: rgba(13, 65, 66, 0.06);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(13, 65, 66, 0.15);
}

.bottom-bar-btn {
    display: inline-block;
    background: #AA8553;
    color: white;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 0px;
    border-radius: 300px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(170, 133, 83, 0.2);
    position: relative;
    overflow: hidden;
}

.bottom-bar-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shineSwipe 3s infinite ease-in-out;
}

.bottom-bar-btn:hover {
    background: #8e6b41;
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(170, 133, 83, 0.35);
}

/* RESPONSIVE DESIGN ADJUSTMENTS FOR FIXED BARS */
@media (max-width: 768px) {
    body {
        padding-bottom: 76px; /* Extra offset on mobile for stacked bottom bar */
    }
    
    .bottom-bar-container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
        padding: 0 16px;
    }
    
    .bottom-bar-price {
        flex-direction: row;
        align-items: baseline;
        gap: 6px;
    }
    
    .bottom-bar-price .original-price {
        font-size: 0.65rem;
    }
    
    .bottom-bar-price .current-price {
        font-size: 1.05rem;
    }
    
    .bottom-bar-timer {
        font-size: 0.78rem;
        gap: 4px;
    }
    
    .bottom-bar-timer .timer-countdown {
        font-size: 0.8rem;
        padding: 2px 6px;
    }
    
    .bottom-bar-btn {
        width: 100%;
        text-align: center;
        margin-top: 1px;
        padding: 6px 14px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .top-bar-container {
        padding: 0 16px;
    }
    .top-bar-left .live-label {
        font-size: 0.78rem;
    }
    .top-bar-btn {
        font-size: 0.68rem;
        padding: 3px 8px;
    }
}

/* Price Highlights inside CTA buttons & banners */
.price-highlight {
    font-size: 1.4em;
    font-weight: 900;
    color: #FFE500; /* Vibrant Neon Gold/Yellow inside CTA buttons */
    text-shadow: 0 1.5px 3px rgba(0, 0, 0, 0.4);
    display: inline-block;
    transition: all 0.25s ease;
    margin-left: 2px;
}

/* For buttons hover, scale it slightly for micro-interaction */
.btn-primary:hover .price-highlight,
.bottom-bar-btn:hover .price-highlight {
    transform: scale(1.1);
    color: #ffffff; /* Turns bright white on hover */
}

/* In the fixed top bar (which has a white background), style it with high-contrast red */
.fixed-top-bar .price-highlight {
    color: #ff3b30; /* Vibrant Red live pricing */
    text-shadow: none;
    font-size: 1.05em;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* buttons */
.btn-primary {
    display: inline-block;
    background: #046bd2;
    color: white;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 8px 18px rgba(4, 107, 210, 0.25);
    animation: buttonGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shineSwipe 3s infinite ease-in-out;
}

.btn-primary:hover {
    background: #045cb4;
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(4, 107, 210, 0.35);
}

.btn-gold {
    background: #AA8553;
    box-shadow: 0 8px 18px rgba(170, 133, 83, 0.25);
    animation: buttonGlowGold 3s ease-in-out infinite;
}

.btn-gold:hover {
    background: #8e6b41;
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(170, 133, 83, 0.35);
}

/* Hero buttons custom personalization classes */
.hero-btn-join {
    font-size: 1.35rem;
    padding: 8px 22px;
}

.hero-btn-reserve {
    font-size: 1.35rem;
    padding: 8px 22px;
}

.countdown-timer {
    display: inline-flex;
    gap: 15px;
    background: #fff;
    padding: 8px 20px;
    border-radius: 60px;
    font-weight: 700;
    animation: timerHighlight 3s ease-in-out infinite;
}

.btn-outline {
    background: transparent;
    border: 1px solid #046bd2;
    color: #046bd2;
}

#foryou {
    height: auto;
}

/* headings */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #0D4142;
}

.gold-text {
    color: #AA8553;
}

.teal-text {
    color: #0D4142;
}

/* hero section */
.hero-section {
    margin-top: -50px;
    min-height: 100vh;
    width: 100%;
    padding: 0px 0 40px;
    background: #ffffff url('Image/bg.png') bottom center / 100% auto no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 30%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 109%);
    position: relative;
    overflow: hidden;
}

.hero-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: -10px;
    gap: 30px;
}

.hero-copy {
    flex: 1.4;
}

.hero-logo-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-logo-row img {
    width: 70px;
    border-radius: 50%;
}

.hero-logo-text h3 {
    color: #0D4142;
    margin: 0;
}

.hero-logo-text p {
    color: #AA8553;
    margin: 0;
}

.hero-title {
    font-size: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 20px 0 10px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin: 30px 0 20px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-img {
    margin-top: 100px;
    max-width: 400px;
    width: 100%;
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 50%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 109%);
}

.hero-countdown {
    background: transparent;
    padding: 0;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shineSwipe {
    0% {
        left: -150%;
    }
    30% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 8px 18px rgba(4, 107, 210, 0.25);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 25px rgba(4, 107, 210, 0.5);
        transform: scale(1.02);
    }
}

@keyframes buttonGlowGold {
    0%, 100% {
        box-shadow: 0 8px 18px rgba(170, 133, 83, 0.25);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 25px rgba(170, 133, 83, 0.5);
        transform: scale(1.02);
    }
}

@keyframes timerHighlight {
    0%, 100% {
        box-shadow: 0 0 5px rgba(13, 65, 66, 0.1);
        border: 1px solid rgba(13, 65, 66, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px rgba(13, 65, 66, 0.3);
        border: 1px solid rgba(13, 65, 66, 0.4);
        transform: scale(1.03);
        background: #fffefb;
    }
}

/* cards grid */
.grid-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 40px 0;
}

.grid-5 .card {
    min-width: 0;
    padding: 18px 12px;
    border-radius: 24px;
}

.grid-5 .card img {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
}

.grid-5 .card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.grid-5 .card p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-gap-25 {
    gap: 25px;
}

.icon-small {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.countdown-badge-alt {
    background: #eef2ff;
    margin: 20px 0;
}

.card {
    background: #fff;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: #f5b04233 solid 1px;
    border-radius: 28px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    flex: 1 1 240px;
}

.card img {
    width: 110px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.direction-card {
    padding: 15px;
}

.direction-card .direction-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    margin: 0;
    object-fit: contain;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.learn-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F8FAFE;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    transition: 0.2s;
}

.learn-card img {
    width: 64px;
}

/* form */
.form-wrapper {
    background: white;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #0D4142;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #AA8553;
    box-shadow: 0 0 0 3px rgba(170, 133, 83, 0.2);
}

.countdown-badge {
    background: #FEF9E6;
    border-radius: 60px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.countdown-timer {
    display: inline-flex;
    gap: 15px;
    background: #fff;
    padding: 8px 20px;
    border-radius: 60px;
    font-weight: 700;
}

.timer-unit {
    background: #0D4142;
    color: white;
    padding: 6px 12px;
    border-radius: 40px;
    min-width: 70px;
    text-align: center;
}

.testimonial-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.testimonial-img-card {
    padding: 12px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-img-card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
}


.star {
    color: #f5b042;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

footer {
    background: #0D4142;
    color: white;
    padding-bottom: 10px;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .flex-between {
        flex-direction: column;
    }
}

.flex-between {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.w-50 {
    flex: 1;
    min-width: 280px;
}

.bg-light {
    background: #f4e5d2;
}

.section-fade {
    background: #ffebd9a6;
}

.pill-icon {
    background: #AA8553;
    width: 45px;
    height: 45px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section-padding {
    padding: 70px 0;
}

.text-center {
    text-align: center;
}

.badge-pill {
    display: inline-block;
    background: #FFE5C2;
    padding: 0 12px;
    border-radius: 50px;
    font-size: 1rem;
}

.learn-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    justify-content: space-between;
}

.learn-media {
    flex: 0 0 44%;
    max-width: 44%;
}

.learn-bonus-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
}

.bonus-image {
    width: 100%;
    display: block;
    border-radius: 28px;
    object-fit: cover;
}

.learn-cards {
    flex: 0 0 52%;
    max-width: 52%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.learn-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 18px;
}

.learn-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 18px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.learn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.12);
}

.learn-card img {
    width: 28px;
    height: 28px;
}

.icon-circle {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-blue {
    background: rgba(0, 99, 204, 0.12);
}

.icon-orange {
    background: rgba(255, 122, 0, 0.14);
}

.icon-teal {
    background: rgba(16, 185, 129, 0.12);
}

.icon-yellow {
    background: rgba(249, 168, 37, 0.18);
}

.icon-green {
    background: rgba(34, 197, 94, 0.12);
}

.icon-purple {
    background: rgba(124, 58, 237, 0.12);
}

.icon-pink {
    background: rgba(236, 72, 153, 0.14);
}

.icon-brown {
    background: rgba(146, 94, 30, 0.16);
}

.learn-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.learn-card p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.learn-cta {
    margin-top: 24px;
}

@media (max-width: 1040px) {

    .learn-media,
    .learn-cards {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 820px) {
    .learn-layout {
        flex-direction: column;
    }

    .learn-card-grid {
        grid-template-columns: 1fr;
    }
}

.flex-wrap-gap-30 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.flex-wrap-gap-40 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.flex-1 {
    flex: 1;
}

.heading-large {
    font-size: 2.2rem;
}

.text-large {
    font-size: 1.2rem;
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.button-inline {
    margin-top: 25px;
    display: inline-block;
}

.section-dark {
    background: #fde8cf;
    color: inherit;
}

.badge-alt {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    color: white;
    padding: 24px 20px;
    border-radius: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.trainer-image {
    border-radius: 32px;
    width: 100%;
}

.section-card {
    background: #F3F6FC;
    padding: 40px;
    border-radius: 32px;
}

.section-heading {
    font-size: 1.8rem;
}

.sections-subtitle {
    color: #0D4142;
}

.trainer-section {
    background: #fde8cf;
}

.trainer-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
    justify-content: space-between;
}

.trainer-card-img {
    flex: 1 1 30%;
    min-width: 200px;
    margin-top: 40px;
    height: fit-content;
    overflow: hidden;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.trainer-card-img .trainer-image {
    width: 100%;
    border-radius: 32px;
}

.trainer-card-primary {
    flex: 1.2 1 36%;
    min-width: 240px;

    padding: 30px;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.trainer-card-primary h2 {
    font-size: 1.9rem;
    margin: 18px 0 20px;
    color: #0D4142;
}

.trainer-list li {
    margin-bottom: 12px;
    color: #475569;
    font-weight: 600;
}

.section-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
    color: #AA8553;
}

.trainer-card-secondary {
    flex: 0.9 1 26%;
    margin-top: 40px;
    min-width: 200px;
    display: flex;
    height: fit-content;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 260px;
    background: #fff7e4;
    border: 1px solid rgba(170, 133, 83, 0.24);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.trainer-card-secondary p {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #8c6239;
    font-weight: 700;
    max-width: 280px;
}

.lotus-mark {
    margin-top: 24px;
    font-size: 2rem;
    color: #c08f45;
}



.list-margin {
    margin-top: 20px;
}

.text-highlight {
    font-weight: bold;
    font-size: 1.2rem;
}

.swiper-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.btn-block {
    display: block;
    text-align: center;
}

.btn-full {
    width: 100%;
    background: #AA8553;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.text-bold {
    font-weight: 800;
}

.footer-row {
    display: flex;
    padding-bottom: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
}

.footer-logo-text h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.4rem;
}

.footer-logo-text p {
    margin: 0;
    color: #FFE8B6;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: white;
    font-size: 24px;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #FFE8B6;
    transform: scale(1.15);
}

.footer-link {
    color: #FFE8B6;
}

.footer-hr {
    margin: 30px 0 10px;
    border-color: #ffffff30;
}

.footer-note {
    text-align: right;
    margin-bottom: 0;
    font-size: 0.8rem;
}

.transparent-countdown {
    background: transparent;
}

.join-section {
    padding: 70px 0;
    background: #fde8cf;
}

/* Price tag and offer styling */
.price-container {
    text-align: center;
    margin: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-img {
    max-width: 240px;
    width: 100%;
    border-radius: 70px;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(170, 133, 83, 0.2));
    animation: offerFloatPulse 3.5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.price-img:hover {
    transform: scale(1.08) rotate(-1deg);
    filter: drop-shadow(0 12px 24px rgba(170, 133, 83, 0.35));
}
@keyframes offerFloatPulse {
    0% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 6px 12px rgba(170, 133, 83, 0.2));
    }
    50% {
        transform: translateY(-8px) scale(1.04);
        filter: drop-shadow(0 16px 28px rgba(170, 133, 83, 0.35));
    }
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 6px 12px rgba(170, 133, 83, 0.2));
    }
}

/* SCROLL DETECTED ENTRANCE ANIMATIONS */
.js-enabled .card,
.js-enabled .learn-card,
.js-enabled .trainer-card,
.js-enabled .testimonial-card {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Default slide up for generic elements */
.js-enabled .card,
.js-enabled .learn-card,
.js-enabled .testimonial-card {
    transform: translateY(50px);
}

/* Webinar Target Cards Grid-5: slide in from left (odd) and right (even) */
.js-enabled .grid-5 .card:nth-child(odd) {
    transform: translateX(-60px) translateY(30px);
}
.js-enabled .grid-5 .card:nth-child(even) {
    transform: translateX(60px) translateY(30px);
}

/* Why Choose Section Cards Grid-3: slide in from left, bottom, right */
.js-enabled .why-grid .card:nth-child(3n+1) {
    transform: translateX(-70px);
}
.js-enabled .why-grid .card:nth-child(3n+2) {
    transform: translateY(50px);
}
.js-enabled .why-grid .card:nth-child(3n+3) {
    transform: translateX(70px);
}

/* Learn Section Cards Grid-2: slide in from left and right */
.js-enabled .learn-card-grid .learn-card:nth-child(odd) {
    transform: translateX(-50px);
}
.js-enabled .learn-card-grid .learn-card:nth-child(even) {
    transform: translateX(50px);
}

/* Trainer Cards: slide in from left, bottom, right */
.js-enabled .trainer-card-img {
    transform: translateX(-80px);
}
.js-enabled .trainer-card-primary {
    transform: translateY(60px);
}
.js-enabled .trainer-card-secondary {
    transform: translateX(80px);
}

/* Active Scroll Triggered States */
.js-enabled .card.scroll-active,
.js-enabled .learn-card.scroll-active,
.js-enabled .trainer-card.scroll-active,
.js-enabled .testimonial-card.scroll-active {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* Floating Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #AA8553;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(170, 133, 83, 0.35);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.back-to-top:hover {
    background: #8e6b41;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(170, 133, 83, 0.5);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Adjust position slightly on mobile screens */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 96px;
    }
}

@media (max-width: 576px) {
    .back-to-top {
        bottom: 96px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* RESPONSIVE DESIGN ADJUSTMENTS */

/* Small Desktops (up to 1200px) */
@media (max-width: 1200px) {
    .card {
        aspect-ratio: auto;
        padding: 24px 16px;
    }
}

/* Medium Devices (Tablets, up to 991px) */
@media (max-width: 991px) {
    .hero-section {
        -webkit-mask-image: none;
        mask-image: none;
        background-size: cover;
        padding-top: 40px;
    }

    .hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-top: 40px;
    }

    .hero-copy {
        flex: 1 1 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logo-row {
        justify-content: center;
        text-align: left;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        flex: 1 1 100%;
        margin-top: 20px;
    }

    .hero-img {
        margin-top: 20px;
        max-width: 320px;
    }

    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Devices (Mobile landscape / Large phones, up to 768px) */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .w-50 {
        width: 100%;
        flex: 1 1 100%;
    }

    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-logo-row {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .trainer-layout {
        flex-direction: column;
        align-items: stretch;
    }

    .trainer-card-img,
    .trainer-card-primary,
    .trainer-card-secondary {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .grid-5 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-5 .card {
        aspect-ratio: auto;
        padding: 24px 16px;
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Extra Small Devices (Mobile portrait, up to 576px) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin: 24px 0 15px;
    }

    .hero-actions .btn-primary {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    .card {
        aspect-ratio: auto;
        padding: 24px 16px;
        flex: 1 1 100%;
        max-width: 100%;
    }

    .form-wrapper {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .countdown-badge {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .countdown-timer {
        gap: 10px;
        padding: 6px 12px;
        width: 100%;
        justify-content: center;
    }

    .timer-unit {
        min-width: 60px;
        font-size: 0.9rem;
        padding: 4px 8px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Very Small Devices (up to 380px) */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

.hero-btn-join {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1;
    font-size: 1.5rem;
    padding: 8px 34px;
}
.hero-btn-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1;
    font-size: 1.3rem;
    padding: 8px 34px;
}