:root {
    --primary-color: #005AAB;
    --primary-light: #0081f2;
    --secondary-color: #00AEEF;
    --bg-light: #f8fbff;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Specific adjustment for the first section on non-hero pages */
.policy-page section:first-of-type {
    padding-top: 2rem;
}

section {
    padding: 6rem 0;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-soft);
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20rem;
    position: relative;
}

.logo img {
    width: 200px;
    height: auto;
    display: block;
}

.mobile-toggle {
    display: none;
    position: absolute;
    right: 2rem;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
}

.nav-links a {
    font-weight: 400;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-only {
    display: none;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 90, 171, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    width: 100%;
/*    margin-top: 1rem; */
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: scale(1.02);
}

/* --- Hero Section --- */
#hero {
    height: 100vh;
    min-height: 700px;
    background: url('../img/hero_bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 90, 171, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

/* --- Benefits --- */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.text-center { text-align: center; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.benefit-card {
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* --- Product --- */
.bg-light { background-color: #f0f7ff; }

.product-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.product-image {
    flex: 1;
    position: relative;
}

.product-image img {
    border-radius: 30px;
}

.award-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem;
    text-align: center;
}

.award-badge strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.product-text {
    flex: 1;
}

.product-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.experience-note {
    padding: 1.5rem;
    font-style: italic;
    font-size: 0.9rem;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.method h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 90, 171, 0.1);
}

.btn-block { width: 100%; }

/* --- Footer --- */
.footer {
    background: #002e57;
    color: rgba(255, 255, 255, 0.82);
    padding: 4rem 0;
    text-align: center;
}

.footer-links {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.distributor {
    font-size: 0.8rem;
    margin-top: 2rem;
    opacity: 0.6;
}

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(30px); }
.fade-in-left { opacity: 0; transform: translateX(-30px); }
.fade-in-right { opacity: 0; transform: translateX(30px); }

.appear {
    opacity: 1;
    transform: none;
    transition: all 1s ease;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

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

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .container { padding: 0 1.5rem; }
    .hero-text h1 { font-size: 3rem; }
    
    .logo img {
        width: 200px;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hamburger Animation to X */
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        transition: 0.4s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.25rem;
        font-weight: 600;
        width: 100%;
        text-align: center;
    }

    .mobile-only {
        display: block !important;
    }

    .product-flex, .contact-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .product-image, .contact-form-wrapper { width: 100%; }
}

@media (max-width: 600px) {
    .hero-text h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .logo img { width: 170px; }
}

/* --- Policy Pages Styling --- */
.policy-page {
    background: var(--white);
    padding-top: 100px; /* Accounts for fixed header height */
}

.policy-content {
    padding-top: 3rem;
    padding-bottom: 6rem;
    max-width: 800px;
}

.policy-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.policy-content section {
    padding: 2rem 0;
}

.policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f7ff;
    padding-bottom: 0.5rem;
}

.policy-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
}

.policy-content p {
    margin-bottom: 1rem;
    color: #444;
}

.policy-content ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* --- Video Modal & Thumbnails --- */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.video-thumbnail::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 114, 206, 0.9);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.video-thumbnail:hover::after {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
