/* ===================================
   SEO CONTENT & HOMEPAGE ENHANCEMENTS
   ===================================*/

/* Hero Features */
.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.hero-feature i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* SEO Content Section */
.seo-content {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-wrapper h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.content-wrapper p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Feature Boxes */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.feature-box {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.feature-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Why Choose Items */
.why-choose {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.why-item i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.why-item h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.why-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* User List */
.user-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.user-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.user-list li:last-child {
    border-bottom: none;
}

.user-list i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

/* Fix animations for Age Calculator and Color Picker */
.tool-card:nth-child(4) {
    animation: zoomIn 0.6s ease-out !important;
    animation-delay: 0.3s !important;
}

.tool-card:nth-child(4):hover {
    animation: none !important;
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(150, 206, 180, 0.3);
}

.tool-card:nth-child(10) {
    animation: slideInLeft 0.8s ease-out !important;
    animation-delay: 0.9s !important;
}

.tool-card:nth-child(10):hover {
    animation: none !important;
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(241, 148, 138, 0.3);
}

/* Responsive Styles for SEO Content */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-boxes {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.25rem;
    }
    
    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .user-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
