/* Global Styles */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #2C3E50;
    --text-color: #333333;
    --light-bg: #F8F9FA;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #EBF4FF 0%, #F8F9FA 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    background: url('img/pattern.png') repeat;
    opacity: 0.05;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 1rem;
}

.hero-section h1 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-size: 2.8rem;
    font-weight: 700;
}

.hero-section .lead {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}



.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--secondary-color);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}


.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    background-color: #357ABD;
    border-color: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
    }
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.badge-icon {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.badge-icon:hover {
    opacity: 1;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.product-showcase img {
    max-width: 100%;
    height: auto;
    z-index: 2;
}

.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.highlight-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, rgba(74, 144, 226, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-circle 2s ease-in-out infinite;
}

@keyframes pulse-circle {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .feature-item {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .product-showcase img {
        max-width: 50%;
    }

    .highlight-circle {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 0;
    }

    .hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .feature-item i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }

    .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .badge-icon {
        height: 30px;
    }
}

/* Pricing Section Styles */
.pricing-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-image {
    margin: -30px -30px 20px -30px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    background: #f8f9fa;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    padding: 20px;
    transition: transform 0.3s ease;
}

.pricing-card:hover .product-image img {
    transform: scale(1.05);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.price .dollar {
    font-size: 1.5rem;
    vertical-align: super;
}

.price .per {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.savings-tag {
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.features-list li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

.pricing-footer {
    margin-top: auto;
}

.guarantee {
    text-align: center;
    margin: 20px 0;
}

.guarantee-badge {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.guarantee p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.money-back {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 20px 0;
    font-weight: 500;
}

.payment-methods {
    text-align: center;
    margin-top: 20px;
}

.payment-icons {
    max-width: 200px;
    height: auto;
}

/* Responsive adjustments for pricing section */
@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 30px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .price {
        font-size: 2rem;
    }

    .product-image img {
        max-width: 80%;
    }
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.modal-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

.form-label {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.alert {
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Breakthrough Section Styles */
.breakthrough-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.breakthrough-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.breakthrough-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.question-block .question {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 500;
    line-height: 1.4;
}

.answer-block .lead {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 500;
}

.answer-block .highlight {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
}

.guarantee-block {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.guarantee-block p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.guarantee-highlight {
    background: rgba(74, 144, 226, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin: 1rem 0;
}

.guarantee-highlight p {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
}

.creator-block {
    margin-top: 3rem;
}

.creator-info {
    display: inline-block;
    text-align: center;
}

.signature {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.creator-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.creator-title {
    color: #666;
    font-size: 1rem;
}

/* Responsive adjustments for breakthrough section */
@media (max-width: 768px) {
    .breakthrough-title {
        font-size: 2rem;
    }

    .breakthrough-content {
        padding: 1.5rem;
    }

    .question-block .question {
        font-size: 1.2rem;
    }

    .answer-block .lead {
        font-size: 1.1rem;
    }

    .answer-block .highlight {
        font-size: 1.3rem;
    }

    .guarantee-block {
        padding: 1.5rem;
    }
}

/* Features Section Styles */
.features-section {
    background-color: #ffffff;
    position: relative;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(74, 144, 226, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments for features */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }
}

/* Ingredients Section Styles */
.ingredients-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
}

.section-title {
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.ingredient-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ingredient-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.ingredient-image {
    max-width: 100%;
    height: auto;
}

.ingredient-content {
    flex: 1;
}

.ingredient-content h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ingredient-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive adjustments for ingredients */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .ingredient-card {
        padding: 1rem;
        gap: 1rem;
    }

    .ingredient-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .ingredient-content h3 {
        font-size: 1.1rem;
    }

    .ingredient-content p {
        font-size: 0.9rem;
    }
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #EBF4FF 0%, #F8F9FA 100%);
    position: relative;
}

.cta-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-question {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-description .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.order-btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Responsive adjustments for CTA section */
@media (max-width: 768px) {
    .cta-content {
        padding: 2rem;
    }

    .cta-question {
        font-size: 1.6rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .order-btn {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.rating i {
    color: #ffc107;
    font-size: 1.2rem;
}

.verified-badge {
    margin-left: auto;
    color: #28a745;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.verified-badge i {
    color: #28a745;
    font-size: 1rem;
}

.testimonial-content {
    flex: 1;
    margin: 1rem 0;
}

.testimonial-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.author-info h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0.2rem 0 0 0;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    background-color: white;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(74, 144, 226, 0.05);
}

.accordion-button:focus {
    border-color: rgba(74, 144, 226, 0.2);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.25rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    background-color: white;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }

    .accordion-body {
        font-size: 0.95rem;
        padding: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.disclaimer {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }

    .footer-links {
        gap: 20px;
    }

    .disclaimer {
        padding: 15px;
        margin: 20px 0;
    }
}

/* Policy Pages Styles */
.policy-section {
    padding: 120px 0 60px;
}

.policy-section h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.policy-content h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.policy-content h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 100px 0 40px;
    }

    .policy-content h2 {
        font-size: 1.3rem;
        margin: 25px 0 12px;
    }

    .policy-content h3 {
        font-size: 1.1rem;
    }
} 