﻿/* Solution Page Styles */

/* Solutions Section */
.rc_solutions_section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.rc_solutions_container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.rc_section_title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.rc_section_subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Solutions Grid */
.rc_solutions_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rc_solution_item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rc_solution_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.rc_solution_image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.rc_solution_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rc_solution_item:hover .rc_solution_image img {
    transform: scale(1.1);
}

.rc_solution_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rc_solution_item:hover .rc_solution_overlay {
    opacity: 1;
}

.rc_solution_icon {
    width: 70px;
    height: 70px;
    background: rgba(243, 156, 18, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.rc_solution_item:hover .rc_solution_icon {
    transform: scale(1);
}

.rc_solution_content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rc_solution_content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.rc_solution_content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rc_solution_features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.rc_solution_features li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.rc_solution_features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

.rc_solution_btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    align-self: flex-start;
}

.rc_solution_btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 35, 65, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .rc_solutions_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .rc_page_banner {
        height: 200px;
    }

    .rc_page_banner_content h1 {
        font-size: 28px;
    }

    .rc_page_banner_content p {
        font-size: 16px;
    }

    .rc_section_title {
        font-size: 28px;
    }

    .rc_section_subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .rc_solutions_grid {
        gap: 20px;
    }

    .rc_solution_image {
        height: 200px;
    }

    .rc_solution_content {
        padding: 20px;
    }

    .rc_solution_content h3 {
        font-size: 20px;
    }

    .rc_solution_content p {
        font-size: 15px;
    }
}

@media screen and (max-width: 576px) {
    .rc_page_banner {
        height: 150px;
    }

    .rc_page_banner_content h1 {
        font-size: 24px;
    }

    .rc_page_banner_content p {
        font-size: 14px;
    }

    .rc_section_title {
        font-size: 24px;
    }

    .rc_section_subtitle {
        font-size: 15px;
    }

    .rc_solutions_grid {
        grid-template-columns: 1fr;
    }

    .rc_solution_image {
        height: 180px;
    }

    .rc_solution_icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .rc_solutions_section {
        padding: 40px 0;
    }

    .rc_solutions_container {
        padding: 0 10px;
    }

    .rc_solution_content {
        padding: 15px;
    }

    .rc_solution_features li {
        font-size: 14px;
    }

    .rc_solution_btn {
        padding: 10px 20px;
        font-size: 15px;
    }
}