/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Caveat:wght@600&display=swap');

/* CSS Variables for Theme - Soft Natural Palette */
:root {
    --bg-main: #f9f8f4; /* Soft beige background */
    --bg-card: #ffffff; /* White for cards */
    --primary-green: #899c75; /* Sage green from button */
    --primary-green-hover: #758663;
    --text-dark: #2d3748; /* Slate gray for main text */
    --text-light: #718096; /* Lighter text */
    --border-color: #e2e8f0;
    --success-green: #25D366; /* WhatsApp Green */
    --gold-star: #eab308;
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 30px rgba(0, 0, 0, 0.08);
    --radius-lg: 20px;
    --radius-md: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    line-height: 1.2;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-green { color: var(--primary-green); }

/* Top Navigation Bar */
.navbar {
    background-color: var(--bg-main);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

a.logo {
    text-decoration: none;
    color: var(--text-dark);
}

.nav-trust-badges {
    display: flex;
    gap: 30px;
}

.nav-badge {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switcher {
    display: flex;
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 6px 16px;
    border-radius: 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.85rem;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pre-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.benefit-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefit-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #5f7048; /* Darker green */
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(95, 112, 72, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #4b5a38;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(95, 112, 72, 0.4);
}

.hero-sub-cta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
    max-width: 80%;
}

.hero-guarantee {
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Images & Trust Card */
.hero-images {
    position: relative;
}

.hero-carousel {
    display: block;
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
}

.carousel-img.product-box-img {
    object-fit: contain;
    background-color: white;
    padding: 20px;
}

.floating-trust-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: absolute;
    bottom: -60px;
    right: 0;
    width: 90%;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(255,255,255,0.5);
}

.floating-trust-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-item i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-main);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card.personal-story {
    background: var(--bg-card);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-green);
}

.story-author {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.quote {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    flex-grow: 1;
}

/* Consultant Section */
.consultant-section {
    padding: 40px 0 80px;
}

.consultant-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
    max-width: 900px;
    margin: 0 auto 30px;
}

.consultant-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.consultant-portrait {
    width: 140px;
    height: 180px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--bg-main);
    box-shadow: var(--shadow-soft);
}

.consultant-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consultant-name {
    font-size: 1.5rem;
    margin: 5px 0;
}

.consultant-role {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.consultant-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.consultant-message {
    text-align: right;
}

.slogan {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.quote-script {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.disclaimer-note {
    font-size: 0.75rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0 80px;
    background-color: var(--bg-card);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-main);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-green);
}

.faq-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Bottom Trust Bar */
.bottom-trust-bar {
    background-color: #eff1ec; /* Slightly darker beige/green */
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-bar-item i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 0.95rem;
}

.trust-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Footer */
footer {
    padding: 30px 0;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

footer p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.mt-2 {
    margin-top: 10px;
}

.fda-disclaimer {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--success-green);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .benefit-list li {
        justify-content: center;
    }
    
    .hero-guarantee {
        justify-content: center;
    }
    
    .hero-images {
        order: 1;
        margin-bottom: 80px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .consultant-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .consultant-info {
        flex-direction: column;
    }
    
    .consultant-message {
        text-align: center;
    }
    
    .nav-trust-badges {
        display: none;
    }

    .trust-bar-container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
