/* 
* Glycowize Blood Optimizer Website Styles
* Modern, clean and responsive design
*/

/* Base Styles & Reset */
:root {
    --primary-color: #4e7a51;
    --secondary-color: #8fb996;
    --accent-color: #e27d60;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #fff;
    --light-bg: #f8f9fa;
    --border-color: #e1e1e1;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

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

a:hover {
    color: var(--accent-color);
}

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

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

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

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(226, 125, 96, 0.3);
}

.cta-button:hover {
    background-color: #d06c52;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(226, 125, 96, 0.4);
}

/* Benefits Section */
.benefits {
    background-color: #f8f9fa;
    text-align: center;
    padding: 80px 0;
}

.benefits h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
}

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

.benefit-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    background-color: #4e7a51;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(78, 122, 81, 0.3);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Benefits Section Updates */
.benefits-intro {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.benefits-image {
    max-width: 45%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.benefits-text {
    font-size: 1.1rem;
    margin: 0;
}

/* Ingredients Section */
.ingredients {
    text-align: center;
}

.ingredients h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.ingredients > p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

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

.ingredient-card {
    background-color: var(--light-bg);
    padding: 0 0 25px 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ingredient-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
    display: block;
}

.ingredient-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0 25px 15px;
    padding: 0 10px;
    font-weight: 600;
}

.ingredient-card p {
    margin: 0 25px;
    padding: 0 10px;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Ingredients Section Updates */
.ingredients-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.ingredients-video {
    flex: 1;
    min-width: 300px;
}

.ingredients-video iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.ingredients-highlights {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ingredient-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ingredient-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ingredient-highlight i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background-color: rgba(78, 122, 81, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ingredient-highlight p {
    margin: 0;
    line-height: 1.5;
}

.ingredient-highlight strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-bg);
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* How It Works Section Updates */
.how-it-works-intro {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.how-it-works-image {
    max-width: 45%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.how-it-works-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-content h3 i {
    color: var(--primary-color);
}

.step-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: var(--shadow);
    display: block;
}

.action-summary {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.action-icon {
    background-color: var(--primary-color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.action-icon i {
    font-size: 2rem;
}

.action-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

.action-button:hover {
    background-color: #d06c52;
    color: white;
    transform: translateY(-3px);
}

/* Testimonials Section */
.testimonials {
    text-align: center;
}

.testimonials h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 350px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Testimonials Section Updates */
.testimonial-intro {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.testimonial-intro-image {
    max-width: 45%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-intro-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.testimonial-info {
    flex: 1;
}

.testimonial-metrics {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.metric {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--light-bg);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.metric i {
    color: var(--primary-color);
}

.testimonial-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonial-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
}

.testimonial-button:hover {
    background-color: #d06c52;
    color: white;
    transform: translateY(-3px);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-content {
    flex: 1;
    text-align: left;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 0 30px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-feature i {
    color: white;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.cta-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.primary-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.primary-button:hover {
    background-color: #d06c52;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.guarantee {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.guarantee i {
    font-size: 1.3rem;
    color: white;
}

.guarantee p {
    margin-bottom: 0;
    font-weight: 500;
    color: white;
}

/* FAQ Section */
.faq {
    background-color: var(--light-bg);
}

.faq h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* FAQ Section Updates */
.faq-intro {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.faq-intro-image {
    max-width: 45%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.faq-intro-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-icon {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(78, 122, 81, 0.3);
}

.faq-more {
    text-align: center;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ecf0f1;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.amazon-disclaimer {
    font-size: 0.8rem;
    color: #a0a0a0;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-intro, .how-it-works-intro, .testimonial-intro, .faq-intro {
        flex-direction: column;
    }
    
    .benefits-image, .how-it-works-image, .testimonial-intro-image, .faq-intro-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .cta .container {
        flex-direction: column;
    }
    
    .ingredients-showcase {
        flex-direction: column;
    }
    
    .benefits-grid, .ingredients-grid, .steps, .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .benefits h2, .ingredients h2, .how-it-works h2, .testimonials h2, .faq h2, .cta h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-metrics {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
    }
    
    .benefit-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button, .primary-button, .secondary-button {
        font-size: 1rem;
        padding: 10px 25px;
    }
    
    .benefits-grid, .ingredients-grid, .steps, .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i {
        font-size: 1.8rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card, .ingredient-card, .step, .testimonial, .faq-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-card:nth-child(2), .ingredient-card:nth-child(2), .step:nth-child(2), .faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3), .ingredient-card:nth-child(3), .step:nth-child(3), .faq-item:nth-child(3) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(4), .ingredient-card:nth-child(4), .step:nth-child(4), .faq-item:nth-child(4) {
    animation-delay: 0.6s;
}

.benefit-card:nth-child(5), .ingredient-card:nth-child(5), .faq-item:nth-child(5) {
    animation-delay: 0.8s;
}

.benefit-card:nth-child(6), .ingredient-card:nth-child(6), .faq-item:nth-child(6) {
    animation-delay: 1s;
}

.primary-button, .secondary-button, .action-button, .testimonial-button, .cta-button {
    transition: all 0.4s ease;
}

.primary-button:hover, .action-button:hover, .testimonial-button:hover, .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(226, 125, 96, 0.4);
}

.secondary-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
} 