/**
 * ============================================================================
 * HIGHLIGHTS SECTION
 * Mobile-first, beautifully responsive design
 * ============================================================================
 */

/* Section Container */
.highlights-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(
        180deg,
        #FFFFFF 0%,
        #fdf2f8 50%,
        #FFFFFF 100%
    );
    overflow: hidden;
}

/* Background Decoration */
.highlights-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(236, 72, 153, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Section Header */
.highlights-header {
    text-align: center;
    margin-bottom: 48px;
}

.highlights-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ec4899;
    margin-bottom: 16px;
}

.highlights-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.2;
}

.highlights-subtitle {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    color: #64748b;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Grid Layout - Mobile First */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

/* Highlight Item */
.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.highlight-item:nth-child(1) {
    animation-delay: 0.1s;
}

.highlight-item:nth-child(2) {
    animation-delay: 0.2s;
}

.highlight-item:nth-child(3) {
    animation-delay: 0.3s;
}

.highlight-item:nth-child(4) {
    animation-delay: 0.4s;
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Icon Wrapper */
.highlight-icon-wrapper {
    flex-shrink: 0;
}

.highlight-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(236, 72, 153, 0.2);
}

.highlight-icon i {
    font-size: 1.75rem;
    color: #ec4899;
}

/* Text Content */
.highlight-text {
    flex: 1;
    min-width: 0;
}

.highlight-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.highlight-item:hover .highlight-number {
    color: #ec4899;
}

.highlight-label {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

/* Counter Styling */
.counter {
    display: inline-block;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Small Mobile (320px - 480px) */
@media (min-width: 320px) {
    .highlights-section {
        padding: 48px 0;
    }
    
    .highlights-header {
        margin-bottom: 40px;
    }
    
    .highlight-item {
        padding: 20px;
    }
    
    .highlight-icon {
        width: 56px;
        height: 56px;
    }
    
    .highlight-icon i {
        font-size: 1.5rem;
    }
    
    .highlight-number {
        font-size: 1.5rem;
    }
}

/* Mobile (481px - 640px) */
@media (min-width: 481px) {
    .highlights-grid {
        max-width: 480px;
    }
    
    .highlight-item {
        padding: 24px;
    }
}

/* Large Mobile / Small Tablet (641px - 768px) */
@media (min-width: 641px) {
    .highlights-section {
        padding: 64px 0;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 720px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
    
    .highlight-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) {
    .highlights-section {
        padding: 80px 0;
    }
    
    .highlights-header {
        margin-bottom: 56px;
    }
    
    .highlights-grid {
        max-width: 900px;
        gap: 28px;
    }
    
    .highlight-item {
        padding: 32px 24px;
    }
    
    .highlight-icon {
        width: 72px;
        height: 72px;
    }
    
    .highlight-icon i {
        font-size: 2rem;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
}

/* Desktop (1025px+) */
@media (min-width: 1025px) {
    .highlights-section {
        padding: 100px 0;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        max-width: 1200px;
    }
    
    .highlight-item {
        padding: 40px 28px;
    }
    
    .highlight-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }
    
    .highlight-icon i {
        font-size: 2.25rem;
    }
    
    .highlight-number {
        font-size: 2.25rem;
    }
    
    .highlight-label {
        font-size: 1rem;
    }
}

/* Extra Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .highlights-grid {
        max-width: 1280px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .highlight-item {
        animation: none;
        opacity: 1;
    }
    
    .highlight-item:hover {
        transform: none;
    }
    
    .highlight-item:hover .highlight-icon {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .highlights-section {
        padding: 40px 0;
        background: white;
    }
    
    .highlight-item {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
}