/**
 * Custom Features Section - Ultra Clean Modern Design
 * Following Design System - Minimalist, Professional
 */

/* Features Section Container */
.features__area-two {
    background: #FFFFFF !important;
    padding: 80px 0 60px 0 !important;
}

/* Section Title */
.features__area-two .section__title .sub-title {
    display: inline-block;
    color: #1976D2 !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Cairo', 'beIN', sans-serif;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.features__area-two .section__title .title {
    color: #1A1A1A !important;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Cairo', 'beIN', sans-serif;
}

.features__area-two .section__title p {
    color: #5F6368 !important;
    font-size: 17px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
    font-family: 'Cairo', 'beIN', sans-serif;
}

/* Features Cards Container */
.features__item-wrap {
    margin-top: 56px;
}

/* Individual Feature Card */
.features__item-two {
    background: #FFFFFF !important;
    border: 2px solid #E8EEF7 !important;
    border-radius: 16px !important;
    padding: 48px 36px !important;
    margin-bottom: 30px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: visible !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0px 4px 16px rgba(25, 118, 210, 0.04) !important;
}

.features__item-two:hover {
    background: #FFFFFF !important;
    border-color: #1976D2 !important;
    box-shadow: 0px 12px 40px rgba(25, 118, 210, 0.12) !important;
    transform: translateY(-8px) !important;
}

/* Remove SVG shape background */
.features__item-shape {
    display: none !important;
}

/* Feature Content */
.features__content-two {
    position: relative;
    z-index: 2;
}

.content-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
}

/* Feature Icon */
.features__icon-two {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 28px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 20px !important;
    box-shadow: 0px 4px 12px rgba(25, 118, 210, 0.08) !important;
}

.features__item-two:hover .features__icon-two {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%) !important;
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0px 8px 24px rgba(25, 118, 210, 0.2) !important;
}

.features__icon-two img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    filter: none !important;
    transition: all 0.3s ease !important;
}

.features__item-two:hover .features__icon-two img {
    filter: brightness(0) invert(1) !important;
    transform: scale(1.1) !important;
}

/* Feature Title */
.features__content-two .title {
    color: #1A1A1A !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    font-family: 'Cairo', 'beIN', sans-serif;
    transition: all 0.3s ease;
}

.features__item-two:hover .features__content-two .title {
    color: #1976D2 !important;
}

/* Feature Description */
.features__content-two p {
    color: #5F6368 !important;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    font-family: 'Cairo', 'beIN', sans-serif;
    transition: all 0.3s ease;
}

.features__item-two:hover .features__content-two p {
    color: #424242 !important;
}

/* Equal height and width cards - Force equal sizing */
.features__area-two .features__item-wrap .row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    margin: 0 !important;
}

.features__area-two .features__item-wrap .row > .col-lg-4,
.features__area-two .features__item-wrap .row > .col-md-6 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove accent bar - clean minimal design */
.features__item-two::before {
    display: none;
}

.features__item-two:hover::before {
    display: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .features__area-two {
        padding: 60px 0 40px 0;
    }

    .features__area-two .section__title .title {
        font-size: 28px;
    }

    .features__item-wrap {
        margin-top: 36px;
    }

    .features__item-two {
        padding: 28px 24px;
        margin-bottom: 24px;
    }

    .features__area-two .features__item-wrap .row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .features__area-two {
        padding: 50px 0 30px 0;
    }

    .features__area-two .section__title .title {
        font-size: 24px;
    }

    .features__area-two .section__title p {
        font-size: 15px;
    }

    .features__item-two {
        padding: 24px 20px;
        margin-bottom: 20px;
    }

    .features__icon-two {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .features__icon-two img {
        width: 32px;
        height: 32px;
    }

    .features__content-two .title {
        font-size: 18px;
    }

    .features__content-two p {
        font-size: 14px;
    }

    .features__area-two .features__item-wrap .row {
        grid-template-columns: 1fr !important;
    }
}

/* Text Center Alignment */
.features__content-two {
    text-align: center !important;
}

.content-top {
    align-items: center !important;
}

/* Clean minimal hover effect only */
.features__item-two {
    cursor: pointer !important;
}
