
.c_breadcrumb_wrap {
    width: 100%;
    padding: 16px 5%;
    box-sizing: border-box;
    background: #fff;
}

.c_solutions {
    width: 100%;
    padding: 60px 40px;
    box-sizing: border-box;
    background: #ffffff;
}

.sol_section_header {
    text-align: left;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.sol_section_title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sol_section_title .title-num {
    font-size: 44px;
    font-weight: 800;
    color: #4ec548;
    line-height: 1;
    font-style: italic;
}

.sol_section_title::after {
    display: none;
}

.sol_section_subtitle {
    font-size: 15px;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

.sol_category {
    margin: 0 auto 20px auto;
    max-width: 1200px;
}

.sol_cat_title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sol_cat_num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ec548, #087a01);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10, 153, 2, 0.2);
}

.sol_cat_desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 24px 52px;
}

.food_banner {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 560px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.food_banner img {
    width: 100%;
    height: 100%;
    display: block;
}


.food_banner_content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #ffffff00;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    background: #ffffff82;
    padding: 20px;
    width: 50%;
    border-radius: 20px;
}

.food_main_title {
    font-size: 42px;
    font-weight: 800;
    color: #212529;
    margin: 0;
    letter-spacing: 6px;
    line-height: 1.4;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.food_main_title::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #4ec548, #087a01);
    margin: 24px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(10, 153, 2, 0.4);
}

.food_sub_title {
    font-size: 16px;
    color: black;
    margin: 20px 0 0 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sol_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin: 0 auto;
    max-width: 1200px;
}

.sol_item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.sol_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 153, 2, 0.12);
    border-color: rgba(10, 153, 2, 0.2);
}

.sol_image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.sol_image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    pointer-events: none;
}

.sol_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sol_item:hover .sol_image img {
    transform: scale(1.08);
}

.sol_item > a {
    display: block;
    text-decoration: none;
}

.sol_name {
    font-size: 15px;
    color: #1a1a1a;
    margin: 0 0 0px 0;
    text-align: left;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 10px;
}


.sol_item:hover .sol_name {
    color: #4ec548;
}

.sol_item:hover .sol_name::before {
    height: 20px;
}

.sol_desc {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    text-align: left;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 5px 10px;
}

.c_floor_guide {
    width: 100%;
    padding: 10px 5%;
    box-sizing: border-box;
    background: linear-gradient(180deg, #f8faf8 0%, #f0f7f0 100%);
}

.c_floor_guide .fg_title {
    text-align: left;
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.c_floor_guide .fg_title .title-num {
    font-size: 44px;
    font-weight: 800;
    color: #4ec548;
    line-height: 1;
    font-style: italic;
}

.c_floor_guide .fg_title::after {
    display: none;
}

.c_floor_guide .fg_intro {
    text-align: left;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.c_floor_guide .fg_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #e8f0e8;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.c_floor_guide .fg_item {
    width: 100%;
    padding: 20px 24px;
    margin-bottom: 0;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    border-right: 1px solid #e8f0e8;
    border-bottom: 1px solid #e8f0e8;
    background: #fff;
    transition: background 0.3s ease;
    box-shadow: none;
    border-radius: 0;
}

.c_floor_guide .fg_item:nth-child(2n) {
    border-right: none;
}

.c_floor_guide .fg_item:nth-last-child(-n+2) {
    border-bottom: none;
}

.c_floor_guide .fg_item:hover {
    transform: none;
    box-shadow: none;
    background: #f6faf6;
}

.c_floor_guide .fg_icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #4ec548, #087a01);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(10, 153, 2, 0.2);
}

.c_floor_guide .fg_icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.c_floor_guide .fg_content {
    flex: 1;
    min-width: 0;
}

.c_floor_guide .fg_content .fg_name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.c_floor_guide .fg_item:hover .fg_name {
    color: #4ec548;
}

.c_floor_guide .fg_content .fg_name .fg_num {
    display: inline-block;
    margin-right: 6px;
    color: #4ec548;
    font-weight: 700;
}

.c_floor_guide .fg_content .fg_desc {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.fg_match_text {
    max-width: 900px;
    margin: 50px auto 0 auto;
    padding: 36px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #0a9902;
}

.fg_match_title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.fg_match_text p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin: 0 0 14px 0;
}

.fg_match_text p:last-child {
    margin-bottom: 0;
}

.c_process {
    width: 100%;
    padding: 60px 40px;
    box-sizing: border-box;
    background: #fafcfa;
    margin: auto;
}

.process_header {
    text-align: left;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process_title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.process_title .title-num {
    font-size: 44px;
    font-weight: 800;
    color: #4ec548;
    line-height: 1;
    font-style: italic;
}

.process_title::after {
    display: none;
}

.process_intro {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0;
}

.process_flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.process_step {
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.step_circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ec548, #087a01);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    box-shadow: 0 6px 20px rgba(10, 153, 2, 0.25);
    position: relative;
    z-index: 2;
}

.step_name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.step_desc {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.step_arrow {
    position: absolute;
    top: 28px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #4ec548, #b8e6b5);
    z-index: 1;
}

.step_arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid #b8e6b5;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.c_cta {
    width: 100%;
    padding: 70px 40px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #0a9902 0%, #087a01 100%);
    text-align: left;
}

.cta_inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cta_title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.cta_title .title-num {
    font-size: 44px;
    font-weight: 800;
    color: rgba(255,255,255,0.6);
    line-height: 1;
    font-style: italic;
}

.cta_text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin: 0 0 32px 0;
}

.cta_btn {
    display: inline-block;
    padding: 14px 44px;
    background: #fff;
    color: #0a9902;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    letter-spacing: 1px;
}

.cta_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
    background: #f0fff0;
}

@media screen and (max-width: 1200px) {
    .sol_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .c_floor_guide .fg_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process_step {
        min-width: 120px;
        max-width: 150px;
    }
}

@media screen and (max-width: 860px) {
    .c_solutions {
        padding:20px 20px;
    }

    .sol_section_title {
        font-size: 24px;
        gap: 10px;
    }

    .sol_section_title .title-num {
        font-size: 34px;
    }

    .sol_section_subtitle {
        font-size: 14px;
    }

    .sol_cat_title {
        font-size: 18px;
    }

    .sol_cat_num {
        width: 34px;
        height: 34px;
        font-size: 15px;
        border-radius: 8px;
    }

    .sol_cat_desc {
        font-size: 13px;
        margin-left: 46px;
        margin-bottom: 18px;
    }

    .sol_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sol_image {
        height: 140px;
    }

    .sol_name {
        font-size: 14px;
    }

    .sol_desc {
        font-size: 12px;
    }

    .c_floor_guide {
        padding: 20px 20px;
    }

    .c_floor_guide .fg_title {
        font-size: 18px;
        gap: 10px;
    }

    .c_floor_guide .fg_title .title-num {
        font-size: 28px;
    }

    .c_floor_guide .fg_intro {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .c_floor_guide .fg_grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .c_floor_guide .fg_item {
        padding: 16px 14px;
        border-right: none;
    }

    .c_floor_guide .fg_item:nth-last-child(-n+2) {
        border-bottom: 1px solid #e8f0e8;
    }

    .c_floor_guide .fg_item:last-child {
        border-bottom: none;
    }

    .c_floor_guide .fg_icon {
        width: 36px;
        height: 36px;
        margin-right: 10px;
        border-radius: 8px;
    }

    .c_floor_guide .fg_icon img {
        width: 20px;
        height: 20px;
    }

    .c_floor_guide .fg_content .fg_name {
        font-size: 14px;
    }

    .c_floor_guide .fg_content .fg_desc {
        font-size: 12px;
    }

    .fg_match_text {
        padding: 24px 20px;
        margin-top: 30px;
    }

    .fg_match_title {
        font-size: 16px;
    }

    .fg_match_text p {
        font-size: 14px;
    }

    .c_process {
        padding: 40px 20px;
    }

    .process_title {
        font-size: 24px;
        gap: 10px;
    }

    .process_title .title-num {
        font-size: 34px;
    }

    .process_intro {
        font-size: 14px;
    }

    .process_flow {
        gap: 20px;
    }

    .process_step {
        flex: 0 0 calc(50% - 10px);
        min-width: auto;
        max-width: none;
        padding: 0;
    }

    .step_arrow {
        display: none;
    }

    .c_cta {
        padding: 50px 20px;
    }

    .cta_title {
        font-size: 24px;
        gap: 10px;
    }

    .cta_title .title-num {
        font-size: 34px;
    }

    .cta_text {
        font-size: 14px;
    }

    .cta_btn {
        padding: 12px 36px;
        font-size: 15px;
    }
}

@media screen and (max-width: 560px) {
    .c_solutions {
        padding: 15px 16px;
    }

    .sol_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sol_image {
        height: 120px;
    }

    .c_floor_guide .fg_grid {
        grid-template-columns: 1fr;
    }

    .process_step {
        flex: 0 0 100%;
    }

    .food_main_title {
        font-size: 26px;
        letter-spacing: 3px;
    }

    .food_sub_title {
        font-size: 14px;
        margin-top: 14px;
    }

    .food_banner {
        height: 240px;
    }
}
@media (max-width: 1440px) {
    .food_banner {
        height: 280px;
    }

    .c_process {
        max-width: 1200px;
    }
}

@media (max-width: 1024px) {
    .food_banner { height:250px; }
    .food_main_title { font-size: 32px; }
}

@media (max-width: 768px) {
    .food_banner { height: 200px; }
    .food_main_title { font-size: 26px; letter-spacing: 3px; }
    .food_sub_title { font-size: 14px; margin-top: 12px; }
    .food_banner_content{
        width: 100%;
        background: #ffffff00;
    }
    .food_main_title::after{
        margin: 0px auto 0;
    }
}

@media (max-width: 480px) {
    .food_banner { height: 180px; }
    .food_main_title { font-size: 22px; letter-spacing: 2px; }
    .food_sub_title { font-size: 13px; }
}
