/* Global Styles */
:root {
    --primary-color: #FF69B4;
    --secondary-color: #FF1493;
    --text-color: #333333;
    --light-pink: #FFF0F5;
    --dark-pink: #FF69B4;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.order-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFB6C1 100%);
    padding: 60px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.benefits-list {
    margin: 2rem 0;
}

.benefits-list p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.benefits-list p::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

.product-image {
    position: relative;
    text-align: center;
}

.product-image img {
    max-width: 40%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: translateY(-10px);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 2rem;
}

.badge-icon {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

/* Why Keto Section */
.why-keto-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, var(--light-pink) 100%);
}

.why-keto-section .section-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 20px;
}

.why-keto-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.why-keto-section .highlight-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
}

.why-keto-section .feature-box {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.why-keto-section .conclusion-box {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.why-keto-section .conclusion-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.why-keto-section .lead {
    font-size: 1.2rem;
    line-height: 1.6;
}

.why-keto-section p {
    margin-bottom: 0;
}

/* Ingredients Section */
.ingredients-section {
    padding: 80px 0;
    background: #fff;
}

.ingredients-section .section-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.ingredients-section .section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.ingredient-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
    height: 100%;
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
}

.ingredient-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-pink);
    border-radius: 50%;
    padding: 20px;
}

.ingredient-icon img {
    max-width: 100%;
    height: auto;
}

.ingredient-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.ingredient-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

.ingredients-note {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    display: inline-block;
}

.ingredients-note p {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-pink) 0%, #fff 100%);
}

.order-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.product-showcase {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.main-product {
    max-width: 80%;
    height: auto;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.main-product:hover {
    transform: translateY(-10px);
}

.quality-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.quality-badge {
    height: 50px;
    width: auto;
}

.order-content {
    padding: 1rem;
}

.order-content h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.benefits-list li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.order-button {
    width: 100%;
    max-width: 300px;
    font-size: 1.3rem;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
}

.secure-text {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

.secure-text i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #fff;
}

.reviews-section .section-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reviews-section .section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.reviewer-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.verified-badge {
    color: #28a745;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.verified-badge i {
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, var(--light-pink) 100%);
}

.faq-section .section-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-section .section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.accordion-item {
    border: 1px solid rgba(255, 105, 180, 0.1);
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 105, 180, 0.1);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    background: white;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-pink) 0%, #fff 50%, var(--light-pink) 100%);
}

.pricing-section .section-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-section .section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.1);
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
}

.package-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-content {
    text-align: center;
    padding-top: 2rem;
}

.package-icon {
    width: 150px;
    margin: 0 auto 2rem;
}

.package-icon img {
    max-width: 100%;
    height: auto;
}

.pricing-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.package-features li {
    padding: 0.8rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.package-features li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 1rem;
    font-weight: bold;
}

.package-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
}

.pricing-note {
    background: white;
    border-radius: 50px;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
}

.pricing-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.pricing-note p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
}

/* Policy Pages */
.policy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, var(--light-pink) 100%);
    min-height: calc(100vh - 80px);
}

.policy-content {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
    margin-bottom: 2rem;
}

.policy-content h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    color: var(--text-color);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 3rem;
}

.policy-block {
    margin-bottom: 2.5rem;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.policy-block p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-block ul,
.policy-block ol {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-block li {
    margin-bottom: 0.5rem;
}

.policy-block li:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--light-pink) 0%, #fff 100%);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-links {
    margin-bottom: 3rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-disclaimer {
    margin-bottom: 3rem;
}

.disclaimer-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
}

.disclaimer-content p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.disclaimer-content .caps-text {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 1.5rem;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 105, 180, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-copyright p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .product-image img {
        max-width: 60%;
    }

    .order-card {
        padding: 2rem;
    }

    .order-content h2 {
        font-size: 2rem;
    }

    .reviews-section .section-title,
    .faq-section .section-title {
        font-size: 2rem;
    }

    .pricing-section .section-title {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .package-icon {
        width: 120px;
    }

    .policy-content {
        padding: 2rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-block h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 40px 0 50px;
        text-align: center;
    }
    
    .hero-content {
        padding: 1rem;
        order: 2;
    }
    
    .product-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .benefits-list {
        text-align: left;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .why-keto-section {
        padding: 40px 0;
    }
    
    .why-keto-section .section-title {
        font-size: 2rem;
    }
    
    .why-keto-section .highlight-box,
    .why-keto-section .feature-box,
    .why-keto-section .conclusion-box {
        padding: 1.5rem;
    }

    .ingredients-section {
        padding: 40px 0;
    }

    .ingredients-section .section-title {
        font-size: 2rem;
    }

    .ingredient-card {
        padding: 1.5rem;
    }

    .ingredient-icon {
        width: 100px;
        height: 100px;
    }

    .ingredients-note {
        padding: 1rem;
    }

    .ingredients-note p {
        font-size: 1rem;
    }

    .order-section {
        padding: 40px 0;
    }

    .order-card {
        padding: 1.5rem;
    }

    .product-showcase {
        padding: 1rem;
    }

    .main-product {
        max-width: 60%;
    }

    .order-content {
        text-align: center;
        padding: 1rem 0;
    }

    .benefits-list li {
        justify-content: center;
    }

    .order-button {
        margin: 1rem auto;
    }

    .reviews-section,
    .faq-section {
        padding: 40px 0;
    }

    .review-card {
        padding: 1.5rem;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 1rem;
    }

    .pricing-section {
        padding: 40px 0;
    }

    .pricing-card h3 {
        font-size: 1.5rem;
    }

    .package-features li {
        font-size: 0.9rem;
    }

    .pricing-note {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .pricing-note i {
        margin: 0 0 0.5rem 0;
    }

    .policy-section {
        padding: 40px 0;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-block p,
    .policy-block ul,
    .policy-block ol {
        font-size: 1rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-links {
        margin-bottom: 2rem;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }

    .disclaimer-content {
        padding: 1.5rem;
    }

    .disclaimer-content p {
        font-size: 0.8rem;
    }

    .disclaimer-content .caps-text {
        font-size: 0.75rem;
    }
} 