﻿/* ============================================
   FEATURES PAGE - LIGHT BLUE THEME
   ============================================ */

/* Color Variables - Light Blue Theme */
:root {
    --primary-color: #42a5f5;
    --primary-dark: #1976d2;
    --primary-light: #64b5f6;
    --secondary-color: #26c6da;
    --accent-color: #ffd54f;
    --text-dark: #212121;
    --text-gray: #616161;
    --text-light: #9e9e9e;
    --bg-light: #f5f9fc;
    --bg-white: #ffffff;
    --bg-blue-light: #e3f2fd;
    --bg-blue-lighter: #f0f7ff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Features Hero Section */
.features-hero-section {
    background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
    padding: 80px 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

    .features-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
    }

.features-hero-content {
    position: relative;
    z-index: 1;
}

.features-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features-hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Hero Stats */
.hero-stats {
    margin-top: 3rem;
}

.stat-box {
    background-color: #0a58ca;
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    color:white;
}

    .stat-box:hover {
        background-color: #0a58ca;
        transform: translateY(-5px);
    }

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Main Features Section */
.main-features-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.feature-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
        background-color: var(--bg-blue-lighter);
    }

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(66, 165, 245, 0.4);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

    .feature-list li {
        padding: 8px 0;
        font-size: 0.95rem;
        color: var(--text-gray);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .feature-list i {
        color: var(--primary-color);
        font-size: 1.1rem;
        flex-shrink: 0;
    }

/* Additional Features Section */
.additional-features-section {
    padding: 80px 0;
    background-color: var(--bg-blue-light);
}

.mini-feature-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .mini-feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-color);
    }

.mini-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.mini-feature-card:hover .mini-icon {
    transform: scale(1.1);
}

.mini-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.mini-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Features by Category Section */
.category-features-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.category-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

    .category-card:hover {
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

.category-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .category-header i {
        font-size: 2rem;
    }

    .category-header h3 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 600;
    }

.category-content {
    padding: 30px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .category-list li {
        padding: 10px 0;
        font-size: 0.95rem;
        color: var(--text-gray);
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid var(--border-color);
    }

        .category-list li:last-child {
            border-bottom: none;
        }

    .category-list i {
        color: var(--primary-color);
        font-size: 1rem;
        flex-shrink: 0;
    }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
    }

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-section .btn-light {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

    .cta-section .btn-light:hover {
        background-color: var(--bg-light);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.cta-section .btn-outline-light {
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

    .cta-section .btn-outline-light:hover {
        background-color: var(--bg-white);
        color: var(--primary-color);
        transform: translateY(-3px);
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.mini-feature-card,
.category-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 991px) {
    .features-hero-title {
        font-size: 2.25rem;
    }

    .features-hero-subtitle {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .features-hero-section {
        padding: 60px 0;
    }

    .features-hero-title {
        font-size: 1.85rem;
    }

    .features-hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.85rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .cta-buttons .btn {
            width: 100%;
            max-width: 300px;
        }

    .feature-card,
    .mini-feature-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .category-content {
        padding: 20px;
    }
}
