/* Keyslim Drops - Page Styles */

/* Accessibility improvements for better contrast */
.nav-link {
    color: #4b5563 !important; /* Improved contrast for navigation links */
}

.savings {
    color: #047857 !important; /* Improved contrast for savings text */
    font-weight: 700 !important;
}

.pricing-option.popular .pricing-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important; /* Better contrast */
    color: #1f2937 !important; /* Darker text for better contrast */
}

.bonuses p {
    color: #1e40af !important; /* Improved contrast for bonus text */
    font-weight: 600 !important;
}

.popular-badge {
    background: #dc2626 !important; /* Better contrast for BEST VALUE badge */
    color: white !important;
    font-weight: 700 !important;
}

.pricing-option.popular .pricing-header h3 {
    color: #1f2937 !important; /* Darker text for better contrast */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.disclosure {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.disclosure small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.hero-image {
    text-align: center;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    max-height: 100%;
    width: 388px;
    height: 336px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
    animation: intensePulse 1.5s infinite;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #ff7b2b 0%, #ff5722 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6);
    animation: none;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

/* Introduction Section */
.introduction {
    padding: 4rem 0;
    background: #f8fafc;
}

.introduction h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e3a8a;
}

.introduction p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #4b5563;
}

/* Ingredients Grid */
.what-is {
    padding: 4rem 0;
    background: white;
}

.what-is h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.ingredient-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.ingredient-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ingredient-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
    font-weight: 600;
}

.ingredient-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #6b7280;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: #f8fafc;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.step-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits {
    padding: 4rem 0;
    background: white;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.benefit-item h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
}

.benefit-item li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 1rem;
}

.benefit-item li:last-child {
    border-bottom: none;
}

.benefit-item li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: #f8fafc;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.6;
}

.testimonial-content cite {
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
}

.results-note {
    text-align: center;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.results-note small {
    color: #6b7280;
    font-style: italic;
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.guarantee h2 {
    margin-bottom: 2rem;
    color: #1e3a8a;
}

.guarantee p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #4b5563;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: #f8fafc;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.pricing-option {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.pricing-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-option.popular {
    border: 2px solid #ff8c42;
    transform: scale(1.05);
}

.pricing-option.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.pricing-option.popular .pricing-header {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

.pricing-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-content {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.product-image {
    margin-bottom: 1.5rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 160px;
    width: 160px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.product-info {
    margin-bottom: 1rem;
}

.product-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 1rem 0;
}

.price-breakdown {
    margin: 1rem 0;
}

.price-breakdown small {
    display: block;
    margin: 0.25rem 0;
    color: #6b7280;
}

.savings {
    color: #047857 !important;
    font-weight: 700 !important;
    font-size: 1rem;
}

.bonuses {
    margin: 1rem 0;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.bonuses p {
    margin: 0.5rem 0;
    color: #1e40af !important;
    font-weight: 600 !important;
}

.shipping-note {
    margin: 1rem 0;
    padding: 0.5rem;
    background: #f0fdf4;
    border-radius: 6px;
    border-left: 3px solid #22c55e;
}

.shipping-note small {
    color: #166534;
    font-weight: 600;
}

.product-info p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.price-breakdown {
    margin-bottom: 1.5rem;
}

.price-breakdown small {
    color: #6b7280;
    font-size: 0.9rem;
}

.savings {
    color: #10b981 !important;
    font-weight: 600;
    display: block;
    margin-top: 0.25rem;
}

.bonuses {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #e0f2fe;
}

.bonuses p {
    margin: 0.5rem 0;
    color: #0369a1;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-cta:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.popular-cta {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    animation: intensePulse 1.5s infinite;
}

.popular-cta:hover {
    background: linear-gradient(135deg, #ff7b2b 0%, #ff5722 100%);
    animation: none;
}

.recommendation {
    font-size: 0.8rem;
    color: #6b7280;
    font-style: italic;
    margin: 0;
}

.pricing .guarantee {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.pricing .guarantee h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.pricing .guarantee p {
    color: #4b5563;
    margin-bottom: 1rem;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
    color: #4b5563;
    line-height: 1.6;
}

/* Navigation Styles */
.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.review-link {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.nav-link.review-link:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.nav-link.review-link::after {
    display: none;
}

/* Header Order Button */
.header-order-btn {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
    position: relative;
    overflow: hidden;
    animation: intensePulse 1.5s infinite;
    border: 2px solid rgba(255, 140, 66, 0.3);
}

.header-order-btn:hover {
    background: linear-gradient(135deg, #ff7b2b 0%, #ff5722 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6);
    animation: none;
}

.header-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    animation: shimmer 3s infinite;
}

.header-order-btn:hover::before {
    left: 100%;
    animation: none;
}

/* Animations */
@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes intensePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4), 0 0 0 0 rgba(255, 140, 66, 0.7);
        border-color: rgba(255, 140, 66, 0.3);
    }
    25% {
        transform: scale(1.08);
        box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6), 0 0 0 10px rgba(255, 140, 66, 0.3);
        border-color: rgba(255, 140, 66, 0.6);
    }
    50% {
        transform: scale(1.12);
        box-shadow: 0 20px 50px rgba(255, 140, 66, 0.8), 0 0 0 20px rgba(255, 140, 66, 0.1);
        border-color: rgba(255, 140, 66, 0.8);
    }
    75% {
        transform: scale(1.08);
        box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6), 0 0 0 10px rgba(255, 140, 66, 0.3);
        border-color: rgba(255, 140, 66, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4), 0 0 0 0 rgba(255, 140, 66, 0.7);
        border-color: rgba(255, 140, 66, 0.3);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-links {
    margin-bottom: 2rem;
    justify-content: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-links a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-disclaimer {
    margin-bottom: 2rem;
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    margin-bottom: 1rem;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-copyright {
    opacity: 0.9;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-copyright small {
    color: #f3f4f6;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-option.popular {
        transform: none;
    }
    
    .pricing-option.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: auto;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-image img {
        width: 100%;
        height: 300px;
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .header-order-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ingredient-item,
    .benefit-item,
    .testimonial-item,
    .faq-item {
        padding: 1.5rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .pricing-content {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
