﻿/* Mango Page - Kesar Mango Special Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== HERO SECTION ========== */
.mango-hero {
    background: linear-gradient(135deg, #FFF9F0 0%, #FFEFE0 100%);
    padding: 80px 5% 60px;
    position: relative;
    overflow: hidden;
}

    .mango-hero::before {
        content: "🥭";
        position: absolute;
        font-size: 300px;
        opacity: 0.05;
        bottom: -50px;
        right: -50px;
        pointer-events: none;
    }

.mango-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.mango-hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    color: white;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.mango-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2D2A24;
    margin: 0 0 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #FF8C00;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.hero-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF8C00;
}

.stat-label {
    font-size: 0.7rem;
    color: #666;
}

.mango-hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-mango-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ========== SECTION HEADER ========== */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: #FFF0E0;
    color: #FF8C00;
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2D2A24;
    margin: 0 0 12px;
}

.section-header .highlight {
    color: #FF8C00;
    position: relative;
}

.section-header p {
    font-size: 1rem;
    color: #666;
}

/* ========== NUTRITION GRID ========== */
.nutrition-section {
    background: white;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.nutrition-card {
    background: white;
    padding: 25px 20px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #FFE8D4;
}

    .nutrition-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(255, 140, 0, 0.1);
    }

.nutrition-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.nutrition-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FF8C00;
}

.nutrition-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2D2A24;
    margin: 5px 0;
}

.nutrition-desc {
    font-size: 0.7rem;
    color: #888;
}

/* Card Color Variations */
.calories-card {
    border-top: 4px solid #FF6B6B;
}

.carbs-card {
    border-top: 4px solid #4ECDC4;
}

.sugar-card {
    border-top: 4px solid #FFE66D;
}

.fiber-card {
    border-top: 4px solid #95E77E;
}

.vitc-card {
    border-top: 4px solid #FF9F4A;
}

.vita-card {
    border-top: 4px solid #A78BFA;
}

.potassium-card {
    border-top: 4px solid #F472B6;
}

.protein-card {
    border-top: 4px solid #60A5FA;
}

.fat-card {
    border-top: 4px solid #94A3B8;
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
    background: linear-gradient(135deg, #FFFBF5, #FFF7EF);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(255, 140, 0, 0.12);
    }

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2D2A24;
    margin: 0 0 12px;
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.benefit-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #FFE8D4;
}

    .benefit-stats span {
        background: #FFF9F0;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.7rem;
        color: #FF8C00;
        font-weight: 500;
    }

/* Card Color Variations for Benefits */
.immunity-card {
    border-left: 4px solid #FF6B6B;
}

.digestion-card {
    border-left: 4px solid #4ECDC4;
}

.antioxidant-card {
    border-left: 4px solid #A78BFA;
}

.energy-card {
    border-left: 4px solid #FFE66D;
}

.vision-card {
    border-left: 4px solid #60A5FA;
}

.weight-card {
    border-left: 4px solid #95E77E;
}

/* ========== SPECIAL SECTION ========== */
.special-section {
    background: white;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.special-card {
    background: linear-gradient(135deg, #FFF9F0, #FFF5E8);
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

    .special-card:hover {
        transform: translateY(-5px);
        background: white;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

.special-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.special-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D2A24;
    margin: 0 0 8px;
}

.special-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* ========== COMPARISON SECTION ========== */
.comparison-section {
    background: linear-gradient(135deg, #FFFBF5, #FFF7EF);
}

.comparison-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.comparison-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.kesar-card {
    border-top: 5px solid #FF8C00;
}

.other-card {
    border-top: 5px solid #94A3B8;
}

.comparison-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2D2A24;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

    .comparison-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        font-size: 0.9rem;
        color: #555;
        border-bottom: 1px solid #FFE8D4;
    }

        .comparison-list li span {
            font-size: 1.2rem;
        }

.vs-card {
    flex: 0 0 auto;
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    color: white;
    text-align: center;
    padding: 30px;
    width: 100px;
}

.vs-icon {
    font-size: 2rem;
    font-weight: 800;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, #2D2A24, #1A1A18);
    padding: 60px 5%;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-badge {
    display: inline-block;
    background: #FF8C00;
    color: white;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 15px;
}

.cta-content p {
    font-size: 1rem;
    color: #E0E0C0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .cta-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }

.cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #FF8C00;
    transition: all 0.3s ease;
}

    .cta-btn-secondary:hover {
        background: #FF8C00;
        transform: translateY(-2px);
    }

.cta-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

    .cta-image img {
        max-width: 100%;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
    .mango-hero {
        padding: 60px 4%;
    }

    .mango-hero-content h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .nutrition-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .mango-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .mango-hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        margin: 0 auto 25px;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .special-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-grid {
        flex-direction: column;
    }

    .vs-card {
        width: auto;
        padding: 15px;
    }

    .vs-icon {
        display: inline-block;
        margin: 0 10px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mango-hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .nutrition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .nutrition-card {
        padding: 15px 12px;
    }

    .nutrition-value {
        font-size: 1.2rem;
    }

    .special-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 20px;
    }

        .benefit-card h3 {
            font-size: 1.1rem;
        }

    .comparison-card {
        padding: 20px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-btn-primary, .cta-btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}
