@charset "utf-8";
/* CSS Document */

        :root {
            --primary-color: #0066B3;
            --primary-dark: #004C8C;
            --secondary-color: #00A896;
            --accent-color: #F77F00;
            --light-bg: #F8FBFF;
            --text-dark: #1A1A2E;
            --text-muted: #5A6B7D;
            --gradient-primary: linear-gradient(135deg, #0066B3 0%, #00A896 100%);
            --gradient-hero: linear-gradient(180deg, #E8F4FC 0%, #FFFFFF 100%);
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
        }

        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }

        .navbar-brand span {
            color: var(--secondary-color);
        }

        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-nav-cta {
            background: var(--gradient-primary);
            color: white !important;
            border: none;
            border-radius: 50px;
            padding: 0.6rem 1.5rem;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 102, 179, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background: var(--gradient-hero);
            padding: 6rem 0 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 168, 150, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(0, 102, 179, 0.1);
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .hero-title span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 540px;
        }

        .hero-image-container {
            position: relative;
        }

        .hero-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 102, 179, 0.15);
        }

        .hero-floating-card {
            position: absolute;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .hero-floating-card.card-1 {
            bottom: 20%;
            left: -10%;
        }

        .hero-floating-card.card-2 {
            top: 15%;
            right: -5%;
        }

        .floating-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
        }

        .floating-text strong {
            display: block;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .floating-text span {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Buttons */
        .btn-primary-custom {
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 102, 179, 0.35);
            color: white;
        }

        .btn-secondary-custom {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            padding: 0.95rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-secondary-custom:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Stats Bar */
        .stats-bar {
            background: white;
            padding: 2rem 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 10;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-top: 0.25rem;
        }

        /* Section Styles */
        .section-padding {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3.5rem;
        }

        .section-label {
            display: inline-block;
            background: rgba(0, 168, 150, 0.1);
            color: var(--secondary-color);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        /* Symptoms Section */
        .symptoms-section {
            background: var(--light-bg);
        }

        .symptom-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 102, 179, 0.08);
        }

        .symptom-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 102, 179, 0.12);
        }

        .symptom-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(0, 102, 179, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }

        .symptom-icon i {
            font-size: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .symptom-card h4 {
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .symptom-card p {
            color: var(--text-muted);
            margin-bottom: 0;
            font-size: 0.95rem;
        }

        /* Product Section */
        .product-section {
            background: white;
            position: relative;
            overflow: hidden;
        }

        .product-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: var(--light-bg);
            z-index: 0;
        }

        .product-card-main {
            background: white;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0, 102, 179, 0.12);
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        .product-image-side {
            background: linear-gradient(135deg, #E8F4FC 0%, #D4EBF8 100%);
            padding: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        .product-image-side img {
            max-width: 280px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 102, 179, 0.2));
        }

        .product-content-side {
            padding: 3rem;
        }

        .product-badge {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .product-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .product-description {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .product-features {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
        }

        .product-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .product-features li i {
            color: var(--secondary-color);
            font-size: 1.25rem;
            margin-top: 0.1rem;
        }

        /* Benefits Section */
        .benefits-section {
            background: var(--gradient-primary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .benefits-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='[w3.org](http://www.w3.org/2000/svg)'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .benefit-item {
            text-align: center;
            padding: 2rem;
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

        .benefit-item h4 {
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .benefit-item p {
            opacity: 0.9;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* Clinical Evidence Section */
        .evidence-section {
            background: white;
        }

        .evidence-card {
            background: var(--light-bg);
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .evidence-card:hover {
            box-shadow: 0 15px 40px rgba(0, 102, 179, 0.1);
        }

        .evidence-label {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .evidence-card h4 {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .evidence-card .study-info {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .evidence-results {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .evidence-results li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .evidence-results li i {
            color: var(--secondary-color);
            margin-top: 0.25rem;
        }

        /* Natural Remedies Section */
        .remedies-section {
            background: var(--light-bg);
        }

        .remedy-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .remedy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 102, 179, 0.1);
        }

        .remedy-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(247, 127, 0, 0.1) 0%, rgba(247, 127, 0, 0.05) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
        }

        .remedy-card h5 {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .remedy-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: white;
        }

        .testimonial-card {
            background: var(--light-bg);
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 4rem;
            color: var(--primary-color);
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-stars {
            color: #FFB800;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.05rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .author-info strong {
            display: block;
            color: var(--text-dark);
        }

        .author-info span {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* FAQ Section */
        .faq-section {
            background: var(--light-bg);
        }

        .accordion-item {
            background: white;
            border: none;
            border-radius: 15px !important;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .accordion-button {
            font-weight: 600;
            color: var(--text-dark);
            padding: 1.25rem 1.5rem;
            background: white;
        }

        .accordion-button:not(.collapsed) {
            background: white;
            color: var(--primary-color);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='[w3.org](http://www.w3.org/2000/svg)' viewBox='0 0 16 16' fill='%230066B3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            padding: 0 1.5rem 1.25rem;
            color: var(--text-muted);
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -25%;
            width: 50%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -25%;
            width: 50%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta-white {
            background: white;
            color: var(--primary-color);
            border: none;
            border-radius: 50px;
            padding: 1rem 2.5rem;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-cta-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            color: var(--primary-dark);
        }

        /* Important Info Section */
        .info-section {
            background: white;
        }

        .info-card {
            background: #FFF9E6;
            border-radius: 15px;
            padding: 2rem;
            border-left: 4px solid var(--accent-color);
        }

        .info-card h4 {
            color: var(--accent-color);
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-card ul {
            margin-bottom: 0;
            padding-left: 1.25rem;
        }

        .info-card li {
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .formulations-card {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 2rem;
        }

        .formulation-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .formulation-item:last-child {
            margin-bottom: 0;
        }

        .formulation-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
        }

        .formulation-info strong {
            display: block;
            color: var(--text-dark);
        }

        .formulation-info span {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-brand span {
            color: var(--secondary-color);
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
        }

        .footer-disclaimer {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-floating-card {
                display: none;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 767px) {
            .hero-section {
                padding: 4rem 0 3rem;
                text-align: center;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image-container {
                margin-top: 3rem;
            }

            .stat-item {
                border-bottom: 1px solid rgba(0, 102, 179, 0.1);
            }

            .stat-item:last-child {
                border-bottom: none;
            }

            .product-image-side {
                min-height: 300px;
            }

            .section-padding {
                padding: 3.5rem 0;
            }
        }