/* === HIGHLIGHTS PAGE - ULTRA MODERN === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8f0e4 100%);
    min-height: 100vh;
}

/* === HERO SECTION === */
.highlights-hero {
    background: linear-gradient(135deg, #6ab04c 0%, #4a7c59 100%);
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.highlights-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 25s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 40px); }
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero-badge i {
    font-size: 1.3rem;
    display: none;
}

.highlights-hero h1 {
    color: white;
    font-weight: 900;
    font-size: 4rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.highlights-hero .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* === SHOWCASE SECTION === */
.showcase-section {
    padding: 5rem 0;
    margin-bottom: 4rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.highlight-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    transition: height 0.4s ease;
}

.highlight-primary::before { background: linear-gradient(180deg, #6ab04c, #4a7c59); }
.highlight-success::before { background: linear-gradient(180deg, #8cc152, #6ab04c); }
.highlight-warning::before { background: linear-gradient(180deg, #f59e0b, #ea580c); }
.highlight-eco::before { background: linear-gradient(180deg, #10b981, #059669); }
.highlight-info::before { background: linear-gradient(180deg, #3b82f6, #2563eb); }
.highlight-purple::before { background: linear-gradient(180deg, #a855f7, #9333ea); }
.highlight-secondary::before { background: linear-gradient(180deg, #8b5cf6, #7c3aed); }

.highlight-card:hover::before {
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.highlight-primary .highlight-icon { background: linear-gradient(135deg, #e8f0e4, #d4e7c5); color: #6ab04c; }
.highlight-success .highlight-icon { background: linear-gradient(135deg, #d4e7c5, #c3e4a8); color: #6ab04c; }
.highlight-warning .highlight-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #f59e0b; }
.highlight-eco .highlight-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #10b981; }
.highlight-info .highlight-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #3b82f6; }
.highlight-purple .highlight-icon { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); color: #a855f7; }
.highlight-secondary .highlight-icon { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); color: #8b5cf6; }

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(-5deg);
}

.highlight-content {
    position: relative;
}

.highlight-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #2d3d1f;
    margin-bottom: 1rem;
}

.highlight-description {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.highlight-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.highlight-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #2d3d1f;
    font-weight: 500;
}

.highlight-features i {
    color: #6ab04c;
    font-size: 1.2rem;
}

.highlight-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-primary .highlight-badge { background: linear-gradient(135deg, #6ab04c, #4a7c59); color: white; }
.highlight-success .highlight-badge { background: linear-gradient(135deg, #8cc152, #6ab04c); color: white; }
.highlight-warning .highlight-badge { background: linear-gradient(135deg, #f59e0b, #ea580c); color: white; }
.highlight-eco .highlight-badge { background: linear-gradient(135deg, #10b981, #059669); color: white; }
.highlight-info .highlight-badge { background: linear-gradient(135deg, #3b82f6, #2563eb); color: white; }
.highlight-purple .highlight-badge { background: linear-gradient(135deg, #a855f7, #9333ea); color: white; }
.highlight-secondary .highlight-badge { background: linear-gradient(135deg, #8b5cf6, #7c3aed); color: white; }

/* === STATISTICS SHOWCASE === */
.stats-showcase {
    padding: 5rem 0;
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #2d3d1f;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.3rem;
    margin-bottom: 4rem;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.stat-card-modern {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6ab04c, #8cc152, #6ab04c);
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(106, 176, 76, 0.2);
}

.stat-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6ab04c, #8cc152);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(106, 176, 76, 0.3);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #6ab04c;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-weight: 600;
    font-size: 1.05rem;
}

/* === COMING SOON SECTION === */
.coming-soon-section {
    padding: 5rem 0;
    margin-bottom: 4rem;
}

.coming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.coming-card {
    background: linear-gradient(135deg, #f8f6f0, #e8f0e4);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid #e8f0e4;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.coming-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 176, 76, 0.05), transparent);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.coming-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(106, 176, 76, 0.15);
}

.coming-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #6ab04c;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.coming-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2d3d1f;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.coming-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.coming-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6ab04c, #8cc152);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* === CTA BOX === */
.cta-box-highlights {
    background: linear-gradient(135deg, #6ab04c 0%, #4a7c59 100%);
    border-radius: 25px;
    padding: 4.5rem 3.5rem;
    position: relative;
    overflow: hidden;
    margin: 5rem 0;
    text-align: center;
}

.cta-box-highlights::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    top: -250px;
    right: -250px;
    animation: rotateSlow 35s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-box-highlights h3 {
    color: white;
    font-weight: 900;
    font-size: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-box-highlights p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-highlights {
    background: white;
    color: #6ab04c;
    border: none;
    padding: 1.5rem 4rem;
    border-radius: 60px;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-highlights:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 55px rgba(255, 255, 255, 0.4);
    color: #4a7c59;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .highlights-hero h1 {
        font-size: 2.5rem;
    }
    
    .highlights-hero .lead {
        font-size: 1.1rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .stats-grid-modern,
    .coming-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box-highlights {
        padding: 3.5rem 2rem;
    }
    
    .cta-box-highlights h3 {
        font-size: 2.2rem;
    }
}
