/* Trends and Insights Styles */

.trends-insights {
    padding: 80px 0;
    background: #f8f9fa;
}

.trends-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.trend-section {
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}

.trend-section:last-child {
    border-bottom: none;
}

.trend-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trend-content:nth-child(even) {
    direction: rtl;
}

.trend-content:nth-child(even) > * {
    direction: ltr;
}

.trend-text {
    padding: 20px 0;
}

.trend-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.trend-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

.trend-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trend-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

.trend-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #007bbd;
    font-weight: bold;
    font-size: 1.1rem;
}

.trend-image {
    text-align: center;
}

.trend-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .trends-insights {
        padding: 40px 0;
    }
    
    .trends-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .trend-section {
        padding: 40px 0;
    }
    
    .trend-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trend-content:nth-child(even) {
        direction: ltr;
    }
    
    .trend-title {
        font-size: 1.5rem;
    }
    
    .trend-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trends-insights {
        padding: 30px 0;
    }
    
    .trend-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .trend-title {
        font-size: 1.25rem;
    }
}

/* Smooth scroll offset for fixed header */
@media (min-width: 769px) {
    .trend-section {
        scroll-margin-top: 80px;
    }
}

/* Animation enhancements */
.trend-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.trend-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects */
.trend-features li:hover {
    color: #007bbd;
    transition: color 0.2s ease;
}

.trend-image img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Active navigation link styles */
.main-menu a.active {
    color: #007bbd !important;
    font-weight: 600;
    position: relative;
}

.main-menu a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #007bbd;
    border-radius: 1px;
}
