.section-subtitle 
{ 
    text-align: center; font-size: 1.1rem; margin-top: -40px; margin-bottom: 50px; color: #666; 
}
.left-align 
{ 
    text-align: left; 
}
.left-align::after 
{ 
    margin: 10px 0 0 0; 
}
.highlight-phrase 
{ 
    font-weight: 700; color: var(--primary); font-size: 1.3rem; margin-bottom: 15px; 
}
.nutrition-list 
{ 
    list-style: none; 
}
.nutrition-list li 
{ 
    padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-weight: 600; 
}
.nutrition-list li::before 
{ content: "✓ "; 
    color: var(--primary); 
    font-weight: bold; 
    margin-right: 10px; 
}
.spacing-top 
{ 
    margin-top: 25px; 
}
.text-center 
{ 
    text-align: center; 
}
.max-width-md 
{
    max-width: 800px; 
    margin: 0 auto; 
}
.max-width-sm 
{ 
    max-width: 550px; 
    margin: 0 auto; 
}
.btn-text 
{ 
    color: var(--primary); 
    font-weight: 700; 
    text-decoration: none; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    display: block; 
    margin-top: 15px; 
}
.program-meta 
{ 
    display: block; 
    font-size: 0.85rem; 
    font-weight: 600; 
    color: #666; 
    margin-top: 10px; 
    background: rgba(0,0,0,0.03); 
    padding: 4px 10px; 
    border-radius: 4px; 
}
.goals-grid 
{ 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 15px; 
    margin: 30px 0; 
}
.goal-item 
{ background: var(--text-light); 
    border: 2px solid var(--secondary); 
    color: var(--secondary); 
    font-weight: 700; 
    padding: 15px; 
    border-radius: 50px;
}
.testimonial-card 
{ 
    background: var(--text-light); 
    padding: 30px; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.02); 
}
.rating 
{ 
    color: gold; 
    font-weight: 700; 
    font-size: 0.9rem; 
    margin-bottom: 10px; 
    text-transform: uppercase; 
}
.quote 
{ 
    font-style: italic; 
    margin-bottom: 10px; 
}
.author 
{ 
    font-weight: 700; 
    color: #555; 
}
.table-container 
{ 
    overflow-x: auto; 
    margin-top: 20px;
}
.schedule-table 
{ width: 100%; 
    border-collapse: collapse; 
    background: var(--text-light); 
    border-radius: 8px; 
    overflow: hidden; 
}
.schedule-table th, .schedule-table td 
{
    padding: 15px 20px; 
    text-align: left; 
    border-bottom: 1px solid #eee; 
}
.schedule-table th 
{ 
    background: var(--dark); 
    color: var(--text-light); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-size: 0.9rem; 
}
.dark-border 
{ 
    border-color: var(--dark) !important; 
    color: var(--dark) !important; 
}
.dark-border:hover 
{ 
    background: var(--dark) !important; 
    color: var(--text-light) !important; 
}
.app-features 
{ 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
    margin-top: 20px; 
}
.app-feature-item 
{ 
    background: var(--dark); color: var(--text-light); 
    padding: 10px 20px; 
    border-radius: 4px; 
    font-weight: 600; 
    font-size: 0.9rem; 
}
.trial-form 
{ 
    background: var(--text-light); 
    padding: 40px; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    text-align: left; 
}
.form-group 
{ 
    margin-bottom: 20px; 
}
.form-group label 
{ 
    display: block; 
    font-weight: 600; 
    margin-bottom: 8px; 
    font-size: 0.9rem; 
}
.form-group input, .form-group select 
{  
    width: 100%; 
    padding: 12px 15px; 
    border-radius: 6px; 
    border: 1px solid #ccc; 
    font-family: inherit; 
}
.form-checkbox 
{ 
    display: flex;
    align-items: center; 
    gap: 10px; margin-bottom: 25px; 
    font-size: 0.85rem; 
    font-weight: 600; 
}
.full-width 
{ 
    width: 100%; text-align: center; 
}
.footer-tagline 
{ 
    font-weight: 700; color: var(--primary); font-size: 1.1rem; margin-bottom: 15px; 
}
.footer-info 
{ 
    font-size: 0.9rem; opacity: 0.8; margin-bottom: 5px; 
}
:root 
{
    --primary: #ff2a74;      
    --secondary: #7000ff;   
    --dark: #121214;         
    --light: #f8f9fa;        
    --text-dark: #2d2d30;
    --text-light: #ffffff;
    --transition: all 0.3s ease;
}
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html 
{
    scroll-behavior: smooth;
}
body 
{
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--light);
    line-height: 1.6;
}
h1, h2, h3, .logo 
{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}
.container 
{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}
.grid 
{
    display: grid;
    gap: 30px;
}
@media (min-width: 768px) 
{
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.btn 
{
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary 
{
    background: linear-gradient(135deg, var(--primary), #ff6040);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 42, 116, 0.4);
}
.btn-primary:hover 
{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 42, 116, 0.6);
}
.btn-secondary 
{
    background: var(--secondary);
    color: var(--text-light);
}
.btn-secondary:hover 
{ 
    background: #5900cc; 
}
.btn-outline 
{
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}
.btn-outline:hover 
{
    background: var(--text-light);
    color: var(--dark);
}
.section-title 
{
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    text-transform: uppercase;
}
.section-title::after 
{
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 10px auto 0;
    border-radius: 2px;
}
.navbar
{
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 42, 116, 0.1);
}
.nav-container 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo 
{
    color: var(--text-light);
    font-size: 1.6rem;
    text-decoration: none;
    letter-spacing: 1px;
}
.logo span 
{ 
    color: var(--primary); 
}
.nav-links a 
{
    color: var(--text-light);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.nav-links a:not(.btn):hover 
{ 
    color: var(--primary); 
}
.hero 
{
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: var(--text-light);
    background-color: #000; 
}
.hero-bg-img 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background.jpeg') no-repeat center center/cover;
    transition: opacity 0.5s ease;
    z-index: 1;
}
#heroVideo 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}
.hero-overlay 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
    pointer-events: none;
}
.hero-content 
{
    position: relative;
    max-width: 800px;
    z-index: 4;
}
.hero:hover .hero-bg-img 
{
    opacity: 0.1;
}
.hero:hover #heroVideo 
{
    opacity: 1;
}
.hero-content 
{
    max-width: 800px;
}
.hero-content h1 
{
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content h1 span 
{ 
    color: var(--primary); 
}
.hero-content p 
{
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}
.badge 
{
    background: rgba(112, 0, 255, 0.2);
    border: 1px solid var(--secondary);
    color: #b380ff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}
.hero-cta .btn 
{ 
    margin: 0 10px; 
}
.about-section 
{ 
    background: var(--text-light); 
}
.card 
{
    background: var(--light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.card:hover 
{
    transform: translateY(-5px);
    border-bottom-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.card-icon 
{
    font-size: 3rem;
    margin-bottom: 20px;
}
.card h3 
{ 
    margin-bottom: 15px; font-size: 1.4rem; 
}
.class-card 
{
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
}
.class-img 
{
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--text-light);
    transition: var(--transition);
}
.class-card:hover .class-img 
{
    transform: scale(1.03);
}
.class-tag 
{
    background: var(--primary);
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer 
{
    background: var(--dark);
    color: var(--text-light);
    padding-top: 40px;
}
.footer-desc 
{ 
    margin: 15px 0 25px; opacity: 0.7; max-width: 350px;
}
.footer h2 span 
{ 
    color: var(--primary); 
}
.footer h3
{
     margin-bottom: 20px; font-size: 1.4rem; 
}
.contact-form input 
{
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 15px;
    border-radius: 50px;
    border: 1px solid #333;
    background: #222;
    color: var(--text-light);
    font-family: inherit;
}
.contact-form input:focus 
{
    outline: none;
    border-color: var(--primary);
}
.contact-form .btn
{
     width: 100%; 
}
.footer-bottom 
{
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #222;
    font-size: 0.85rem;
    opacity: 0.5;
}
@media (max-width: 767px) 
{
    .nav-links 
    {
     display: none; 
    }
    .hero-content h1 
    {
         font-size: 2.3rem; 
    }
    .price-card.popular 
    {
         transform: none; 
    }
}
@media (max-width: 768px) 
{
    .hero-content h1 
    {
        font-size: 2.2rem;
        line-height: 1.3;
    }  
    .section-title 
    {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    .section-subtitle 
    {
        margin-top: -25px;
        margin-bottom: 35px;
        font-size: 1rem;
    }
    .grid-2, .grid-3, .goals-grid 
    {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .table-container 
    {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; 
        border: 1px solid #eee;
        border-radius: 8px;
    }
    .schedule-table th, .schedule-table td 
    {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    .container 
    {
        width: 92%;
        padding: 40px 0;
    }
    .trial-form 
    {
        padding: 25px 20px;
    }
    .footer .grid-2 
    {
        text-align: center;
    }
    .social-links-div 
    {
        margin-top: 30px;
    }
}
@media (max-width: 480px) 
{
    .nav-container 
    {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .nav-links 
    {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .nav-links a 
    {
        margin-left: 0; 
        font-size: 0.85rem;
    }
    .nav-links .btn 
    {
        padding: 6px 16px;
    }
}
.disclaimer-section 
{
    background-color: var(--light);
    padding: 20px 0;
}
.disclaimer-box 
{
    background-color: rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--primary); /* Accent line using your neon pink color */
    padding: 25px;
    border-radius: 4px;
    text-align: left;
}
.disclaimer-title 
{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-bottom: 8px;
}
.disclaimer-text 
{
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
}
@media (max-width: 768px) 
{
    .disclaimer-box 
    {
        padding: 15px 20px;
        margin: 0 10px;
    }
}
.theme-switch-wrapper 
{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}
.toggle-text 
{
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.theme-switch 
{
    display: inline-block;
    height: 24px;
    position: relative;
    width: 44px;
}
.theme-switch input 
{
    display: none;
}
.slider 
{
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: var(--transition);
}
.slider:before 
{
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 18px;
    left: 4px;
    position: absolute;
    transition: var(--transition);
    width: 18px;
}
input:checked + .slider 
{
    background-color: var(--primary);
}
input:checked + .slider:before 
{
    transform: translateX(18px);
}
.slider.round 
{
    border-radius: 34px;
}
.slider.round:before 
{
    border-radius: 50%;
}
body.dark-theme 
{
    background-color: #1a1a1e;
    color: #e0e0e0;
}
body.dark-theme .about-section,
body.dark-theme .price-card,
body.dark-theme .testimonial-card,
body.dark-theme .schedule-table,
body.dark-theme .trial-form 
{
    background-color: #222227;
    color: #e0e0e0;
}
body.dark-theme .card,
body.dark-theme .program-card,
body.dark-theme .pricing-section,
body.dark-theme .schedule-section,
body.dark-theme .disclaimer-section 
{
    background-color: #1a1a1e;
    color: #e0e0e0;
}
body.dark-theme .section-title,
body.dark-theme h3,
body.dark-theme .price,
body.dark-theme .disclaimer-title 
{
    color: #ffffff;
}
body.dark-theme .schedule-table td 
{
    border-bottom: 1px solid #333339;
}
body.dark-theme .trial-form input,
body.dark-theme .trial-form select 
{
    background-color: #2d2d35;
    border-color: #444;
    color: #fff;
}
@media (max-width: 480px) 
{
    .theme-switch-wrapper 
    {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}
/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* Official WhatsApp green */
    color: #fff;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background-color: #20ba5a;
    color: #fff;
}

@keyframes whatsapp-pulse 
{
    0% 
    { 
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); 
    }
    70% 
    { 
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); 
    }
    100% 
    { 
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); 
    }
}
.whatsapp-float 
{
    animation: whatsapp-pulse 2s infinite;
}
@media (max-width: 480px) 
{
    .whatsapp-float 
    {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}
.toast-notification 
{
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #222227;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000; /* Pushes it above your sticky navigation bar */
    transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Snappy bounce effect */
    border: 2px solid var(--primary); /* Neon pink outline accent */
}
.toast-notification.show 
{
    top: 30px; 
}
.toast-content 
{
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}
.toast-icon 
{
    background-color: var(--primary);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}
.toast-notification.error 
{
    border-color: #ff3838;
}
.toast-notification.error .toast-icon 
{
    background-color: #ff3838;
}
@media (max-width: 480px) 
{
    .toast-notification 
    {
        width: 90%;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}
.gallery-header 
{
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, transparent 100%);
}
.gallery-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding-bottom: 60px;
}
.gallery-item 
{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background-color: #000;
}
.gallery-item img, 
.gallery-item video 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}
.photo-item:hover img 
{
    transform: scale(1.04);
}
.video-item video 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.video-fallback 
{
    position: relative;
    z-index: 2;
    opacity: 1;
}
.video-play-indicator
{
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.video-item:hover .video-play-indicator 
{
    opacity: 0;
}
body.dark-theme .gallery-header h1 
{
    color: #fff;
}
body.dark-theme .gallery-item 
{
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.video-item video 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}
.video-play-indicator 
{
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.video-item:hover .video-play-indicator 
{
    opacity: 0;
}
.goals-showcase-section 
{
    background-color: #ffffff;
    padding: 80px 0;
}
.goals-showcase-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.goal-showcase-card 
{
    background-color: #fcfcfd;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.goal-card-accent-bar 
{
    height: 4px;
    width: 100%;
    background-color: #e5e7eb;
    transition: background-color 0.3s ease;
}
.goal-showcase-content 
{
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.goal-numerical-index 
{
    font-size: 0.85rem;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}
.goal-showcase-content h3 
{
    font-size: 1.3rem;
    color: #1a1a1e;
    margin: 0 0 12px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.goal-showcase-content p 
{
    font-size: 0.92rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}
.goal-showcase-card:hover 
{
    transform: translateY(-4px);
    border-color: #1a1a1e;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.goal-showcase-card:hover .goal-card-accent-bar
{
    background-color: #1a1a1e; 
}

.goal-showcase-card:hover .goal-numerical-index 
{
    color: #1a1a1e;
}
@media (max-width: 640px) 
{
    .goals-showcase-grid 
    {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .goal-showcase-content 
    {
        padding: 25px 20px;
    }
}