@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

:root {
    --primary-color: #0a0a0a;
    --primary-light: #1a1a2e;
    --secondary-color: #FF6BA8; /* Deeper Rose Pink */
    --secondary-light: #FF89B5;
    --accent-color: #e8a0c8;    /* Muted Blush */
    --info-color: #64B5F6;      /* Sky Blue */
    --community-color: #BA68C8; /* Deeper Lavender */
    --gold-color: #D4AF37;      /* Premium Gold */
    --bg-color: #929496;
    --section-bg: #7d7f82;
    --card-bg: rgba(0, 0, 0, 0.1);
    --text-color: #121212;
    --text-muted: #3d3d3d;
    --text-dark: #1a1a1a;
    --border-color: rgba(0, 0, 0, 0.15);
    --border-light: rgba(0, 0, 0, 0.08);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass-bg: rgba(22, 22, 32, 0.85);
    --glass-border: rgba(255, 107, 168, 0.15);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(255, 107, 168, 0.15);
    --radius-lg: 24px;
    --radius-md: 16px;
}

.glass {
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.animate-in {
    animation: fadeInUp 1s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 90px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 10px 0;
    background: linear-gradient(to bottom, rgba(146,148,150,0.98) 0%, rgba(146,148,150,0) 100%);
}

header.scrolled {
    background: rgba(146, 148, 150, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 5px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo img {
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 40px;
}

.logo span {
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav ul li a.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s ease;
}

nav ul li a.nav-link:hover {
    color: #fff;
}

nav ul li a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: var(--transition);
}

nav ul li a.nav-link:hover::after,
nav ul li a.nav-link.active::after {
    width: 100%;
}

.nav-link {
    color: #1a1a1a;
}

.nav-link.active {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 137, 181, 0.4);
}

.btn-info {
    background-color: var(--info-color);
    color: var(--primary-color);
}

.btn-community {
    background-color: var(--community-color);
    color: #fff;
}

.btn-gold {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-gold:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* --- Hero Carousel System --- */
.hero-carousel-container {
    padding-top: 90px;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-slide.active .slide-content {
    animation: fadeInUp 1s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-slide.active .slide-image {
    animation: fadeInRight 1.2s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 20;
    display: flex;
    gap: 15px;
}

.carousel-nav button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.carousel-nav button:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.carousel-dots {
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 10px;
}

/* --- Sections --- */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Forms --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* --- Cards --- */
.card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    color: var(--text-color);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 168, 0.2);
    border-color: rgba(255, 107, 168, 0.3);
}

.card-info {
    border-top: 3px solid var(--info-color) !important;
}

.card-community {
    border-top: 3px solid var(--community-color) !important;
}

/* --- Grid Systems --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- Value Cards --- */
.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px 35px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before { opacity: 1; }

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 168, 0.25);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 30px rgba(255,107,168,0.08);
}

.value-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,168,0.15) 0%, rgba(186,104,200,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    border: 1px solid rgba(255,107,168,0.2);
    transition: var(--transition);
}

.value-card:hover .icon {
    background: linear-gradient(135deg, rgba(255,107,168,0.25) 0%, rgba(186,104,200,0.2) 100%);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Testimonials --- */
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 35px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(255, 107, 168, 0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transform: translateY(-5px);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--community-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-meta strong {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    font-family: var(--font-body);
}

.partner-item {
    color: rgba(0,0,0,0.45);
    font-weight: 700;
    font-family: var(--font-body);
}

.testimonial-meta span {
    font-size: 0.75rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- Partner / Trust Strip --- */
.partner-strip {
    background: var(--section-bg);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 50px 0;
    overflow: hidden;
}

.partner-strip-inner {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scroll-partners 25s linear infinite;
    white-space: nowrap;
}

.partner-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-muted);
    font-weight: 700;
    flex-shrink: 0;
}

.partner-item {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 3px;
    flex-shrink: 0;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.partner-item:hover {
    color: rgba(255,255,255,0.8);
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Video Feature Section --- */
.video-feature-section {
    background: var(--section-bg);
    padding: 120px 0;
}

.video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px var(--border-light);
}

.video-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.video-frame:hover img { opacity: 0.5; }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,107,168,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--secondary-color);
    box-shadow: 0 0 40px rgba(255,107,168,0.5);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 4px;
}

.video-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255,107,168,0.5);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Impact Number Strip */
.impact-strip {
    background: linear-gradient(135deg, #1a0a14 0%, #0d0d1a 100%);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,107,168,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.impact-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--community-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.impact-item p {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 700;
}

/* --- Footer --- */
/* --- Ultra-Compact Upgraded Footer --- */
footer {
    padding: 30px 0 0;
    background: var(--section-bg);
    border-top: 1px solid var(--border-light);
    color: var(--text-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 701;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 4px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.86rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.newsletter-form input {
    background: rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 12px 20px;
    color: var(--text-color);
    flex: 1;
    font-size: 0.85rem;
}

.newsletter-form button {
    background: var(--secondary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.social-link {
    width: 34px;
    height: 34px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 15px 0;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

footer .logo {
    color: #fff;
    margin-bottom: 20px;
}

footer ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

footer ul li a {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--secondary-color);
}

footer p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

/* Mobile Adjustments Overhaul */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex !important;
        z-index: 1001;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: #929496;
        border-left: 1px solid rgba(0,0,0,0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -30px 0 60px rgba(0,0,0,0.1);
        transition: 0.5s ease;
        z-index: 1000;
    }

    nav ul.open {
        right: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

.page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('/assets/images/1234.png');
    background-size: cover;
    background-position: center;
    color: #fff !important;
    padding: 150px 0;
    text-align: center;
}

.page-hero h1 {
    color: #fff !important;
}

/* --- Mobile Suite Optimization --- */
@media (max-width: 992px) {
    .hero-carousel-container {
        height: auto !important;
        min-height: 80vh;
        padding-top: 120px;
    }
    
    .carousel-slide {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        height: auto !important;
        margin-bottom: 50px;
    }
    
    .carousel-slide .grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
    }

    .slide-image {
        height: 350px !important;
        width: 100% !important;
    }

    .slide-content h1 {
        font-size: 2.2rem !important;
    }

    .carousel-nav, .carousel-dots {
        display: none !important;
    }

    section {
        padding: 60px 0 !important;
    }

    .grid {
        grid-template-columns: 1fr !important;
    }

    .section-title h2 {
        font-size: 2rem !important;
    }

    .glass {
        padding: 30px 20px !important;
        flex-direction: column;
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2.5rem !important;
    }
}

/* --- Mobile Carousel Fix (Restoring Sliding) --- */
@media (max-width: 992px) {
    .hero-carousel-container {
        height: auto !important;
        min-height: 100vh !important;
        padding-top: 100px !important;
    }
    
    .carousel-slide {
        position: absolute !important;
        opacity: 0 !important;
        visibility: hidden !important;
        display: flex !important;
        height: 100% !important;
        padding-bottom: 0 !important;
        transition: opacity 0.5s ease-out !important;
    }

    .carousel-slide.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .carousel-slide .grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
        padding: 40px 20px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .slide-image {
        height: 300px !important;
        width: 100% !important;
        order: -1 !important; /* Move image to top for better mobile impact */
    }

    .slide-content h1 {
        font-size: 2.2rem !important;
    }

    .carousel-nav {
        display: flex !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    
    .carousel-dots {
        display: flex !important;
        bottom: 35px !important;
    }
}

/* --- Ultimate Mobile Carousel Fix (Grid Stack) --- */
@media (max-width: 992px) {
    .hero-carousel-container {
        height: auto !important;
        min-height: auto !important;
        display: block !important;
        padding-top: 100px !important;
        overflow: visible !important;
    }

    .carousel-wrapper {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .carousel-slide {
        grid-area: 1 / 1 / 2 / 2 !important;
        position: relative !important;
        opacity: 0 !important;
        visibility: hidden !important;
        height: auto !important;
        transition: opacity 0.5s ease !important;
        padding: 50px 0 100px !important;
    }

    .carousel-slide.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .carousel-slide .grid {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 25px !important;
        max-width: 100% !important;
    }

    .slide-image {
        height: 280px !important;
        margin-bottom: 20px !important;
        order: -1 !important;
        width: 100% !important;
    }

    .slide-image img {
        height: 100% !important;
        object-fit: contain !important;
        max-width: 100% !important;
    }

    .slide-content h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .carousel-nav {
        bottom: 20px !important;
        right: 50% !important;
        transform: translateX(50%) !important;
        display: flex !important;
    }

    .carousel-dots {
        bottom: 80px !important;
        transform: translateX(-50%) !important;
        display: flex !important;
    }
}

/* --- Elite Mobile Design System --- */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
        --card-padding: 30px 20px;
    }
    
    h1 { font-size: clamp(2.2rem, 8vw, 3rem) !important; }
    h2 { font-size: clamp(1.8rem, 6vw, 2.5rem) !important; }
    
    .container { padding: 0 25px !important; }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 18px 25px !important;
        border-radius: 50px !important;
    }

    .hero-btns {
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* Elite CTA Floating Button for Mobile */
    .mobile-fab {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: var(--secondary-color);
        color: var(--primary-color);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(255, 137, 181, 0.4);
        z-index: 2000;
        font-size: 1.5rem;
        transition: var(--transition);
        border: none;
    }

    .mobile-fab:hover {
        transform: scale(1.1) rotate(5deg);
    }

    .mobile-fab span { display: none; } /* Show icon only on small screens */
}

/* Standard Grid Resets */
@media (max-width: 992px) {
    .grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .glass {
        border-radius: 20px !important;
    }
}

@media (max-width: 992px) {
    .logo span {
        font-size: 0.9rem !important;
        max-width: 150px;
        line-height: 1.1;
    }
}


/* --- Health-Themed Ambient Animations --- */
.health-particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.health-particle {
    position: absolute;
    opacity: 0.1;
    animation: float-particle 15s linear infinite, generic-pulse 4s ease-in-out infinite;
    color: var(--info-color);
}

@keyframes generic-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes float-particle {
    0% {
        transform: translateY(110vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% {
        transform: translateY(-10vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Pulse background effect for sections */
.pulse-bg {
    animation: bg-pulse-soft 10s ease-in-out infinite;
}

@keyframes bg-pulse-soft {
    0%, 100% { background-color: rgba(255, 255, 255, 0); }
    50% { background-color: rgba(187, 222, 251, 0.05); } /* Soft Sky Blue Pulse */
}

/* Floating subtle icon style */
.floating-icon {
    animation: generic-float 6s ease-in-out infinite;
}

@keyframes generic-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- Elite Design & Animation Upgrades --- */
/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--community-color));
    z-index: 10001;
    transition: width 0.1s;
}

/* 3D Tilt Cards */
.card-elite {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-elite:hover {
    transform: rotateX(2deg) rotateY(2deg) translateY(-10px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

/* Text Word Reveal (Slide-up) */
.split-text {
    overflow: hidden;
    display: inline-block;
}

.split-text span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.split-text.active span {
    transform: translateY(0);
}

/* Magnet Effect Placeholder Class */
.btn-magnet {
    transition: transform 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.btn-magnet:hover {
    transform: scale(1.05) translateX(2px) translateY(-2px);
}

/* --- All Elite Upgrades Tier 2 --- */
::selection {
    background: var(--community-color);
    color: #fff;
}

/* --- Global Responsive Grid System --- */
.grid-resp, .grid-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--min-col-width, 400px), 1fr));
    gap: 40px;
    align-items: center;
}

@media (max-width: 992px) {
    .grid-resp, .grid-stack {
        grid-template-columns: 1fr !important;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    section { padding: 60px 0 !important; }
    h1 { font-size: 3rem !important; }
    h2 { font-size: 2.2rem !important; }
    
    .floating-testimonial {
        position: relative !important;
        right: 0 !important;
        bottom: 0 !important;
        margin-top: 20px;
        max-width: 100% !important;
    }
    
    .slide-image { height: 350px !important; }
    .hero-carousel-container { height: auto !important; min-height: 80vh; }
}

/* Smooth Reveal Animation */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Background Atmospheric Glow */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 107, 168, 0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(186, 104, 200, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
    animation: glow-move 25s infinite linear;
}

@keyframes glow-move {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

/* --- Neutral Hero Slide Override --- */
.hero-carousel-container {
    background: linear-gradient(135deg, #a0a2a4 0%, #929496 100%) !important;
}

.hero-carousel-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(0,0,0,0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Dividers */
.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    margin: 0;
}

/* Dark section overrides */
section {
    background-color: var(--bg-color);
}

section.dark-section {
    background-color: var(--section-bg);
}

/* Impact strip mobile */
@media (max-width: 768px) {
    .impact-strip {
        grid-template-columns: 1fr 1fr;
        padding: 40px 30px;
        gap: 30px;
    }
    .impact-item h3 { font-size: 2.5rem; }
    .partner-strip-inner { animation-duration: 15s; }
}

@media (max-width: 480px) {
    .impact-strip { grid-template-columns: 1fr; }
}
/* --- Advanced Interactivity & Widgets --- */

/* Magnetic & Interactive Buttons */
.btn-magnetic {
    display: inline-block;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
}

.btn-magnetic span {
    display: inline-block;
    pointer-events: none;
}

/* 3D Tilt Cards */
.card-tilt {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.5s var(--transition);
}

.card-tilt:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
}

/* Floating Support Widget */
.floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    pointer-events: none;
}

.widget-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    text-decoration: none;
    border: 1px solid var(--border-light);
    position: relative;
}

.widget-item:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.widget-item.whatsapp {
    background: #25D366;
    color: #fff;
    font-size: 1.5rem;
    border: none;
}

.widget-item.support {
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.3rem;
    border: none;
}

.widget-label {
    position: absolute;
    right: 75px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.widget-item:hover .widget-label {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* Scroll Progress Line (Top) */
.scroll-progress-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--secondary-color);
    z-index: 3000;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Reveal Animations Enhancement */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 1; 
    transform: none;
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.js-active .reveal-up {
    opacity: 0;
    transform: translateY(50px);
}

body.js-active .reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}

body.js-active .reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

body.js-active .reveal-up.active,
body.js-active .reveal-left.active,
body.js-active .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s var(--transition);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s var(--transition);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .floating-widget {
        bottom: 20px;
        right: 20px;
    }
    .widget-item {
        width: 50px;
        height: 50px;
    }
}
