/* Mobile App Download Section Styles */
.cs_mobile_app_download {
    background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
    position: relative;
    overflow: hidden;
}

.cs_green_theme .cs_text_green_accent {
    color: #4CAF50 !important;
}

.cs_bg_light_green {
    background-color: #E8F5E8 !important;
}

.cs_app_features {
    margin: 0;
}

.cs_feature_item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(76, 175, 80, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cs_feature_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cs_feature_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.cs_feature_item:hover::before {
    opacity: 1;
}

.cs_feature_icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: #4CAF50;
    font-size: 28px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cs_feature_item:hover .cs_feature_icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.cs_feature_text {
    flex: 1;
}

.cs_feature_text h4 {
    color: #2E7D32;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
}

.cs_feature_text p {
    color: #666;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Enhanced QR Feature Highlight */
.cs_feature_item:nth-child(1) .cs_feature_icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.cs_download_buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.cs_download_btn {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
}

.cs_android_btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.cs_ios_btn {
    background: white;
    color: #333;
    border: 2px solid #4CAF50;
}

.cs_download_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.cs_btn_icon {
    font-size: 28px;
    margin-right: 12px;
}

.cs_btn_text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cs_btn_text span {
    font-size: 12px;
    opacity: 0.9;
}

.cs_btn_text strong {
    font-size: 16px;
    font-weight: 600;
}

/* Mobile Responsive Design */
@media (max-width: 992px) {
    .cs_feature_item {
        padding: 25px;
    }

    .cs_feature_icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-right: 20px;
    }

    .cs_feature_text h4 {
        font-size: 18px;
    }

    .cs_feature_text p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .cs_feature_item {
        padding: 20px;
        margin-bottom: 0;
    }

    .cs_feature_icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 18px;
        border-radius: 14px;
    }

    .cs_feature_text h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .cs_feature_text p {
        font-size: 14px;
        line-height: 1.5;
    }

    .cs_download_buttons {
        gap: 15px;
    }

    .cs_download_btn {
        min-width: 180px;
        padding: 12px 24px;
    }

    .cs_btn_icon {
        font-size: 24px;
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .cs_download_buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cs_download_btn {
        width: 250px;
        justify-content: center;
    }

    .cs_feature_item {
        padding: 18px;
    }

    .cs_feature_icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-right: 16px;
        border-radius: 12px;
    }

    .cs_feature_text h4 {
        font-size: 16px;
    }

    .cs_feature_text p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .cs_feature_item {
        padding: 16px;
        flex-direction: row;
        text-align: left;
    }

    .cs_feature_icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-right: 16px;
    }

    .cs_feature_text h4 {
        font-size: 15px;
    }

    .cs_feature_text p {
        font-size: 13px;
    }

    .cs_download_btn {
        width: 220px;
        padding: 10px 20px;
    }
}

/* Extra small devices (phones under 360px) */
@media (max-width: 360px) {
    .cs_feature_item {
        padding: 14px;
    }

    .cs_feature_icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 14px;
    }

    .cs_feature_text h4 {
        font-size: 14px;
    }

    .cs_feature_text p {
        font-size: 12px;
    }

    .cs_download_btn {
        width: 200px;
        padding: 8px 16px;
    }

    .cs_btn_icon {
        font-size: 22px;
        margin-right: 8px;
    }

    .cs_btn_text span {
        font-size: 10px;
    }

    .cs_btn_text strong {
        font-size: 14px;
    }
}

/* Hover effects only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
    .cs_feature_item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(76, 175, 80, 0.15);
    }

    .cs_feature_item:hover .cs_feature_icon {
        transform: scale(1.1);
    }

    .cs_download_btn:hover {
        transform: translateY(-2px);
    }
}

/* Touch device adjustments */
@media (hover: none) and (pointer: coarse) {
    .cs_feature_item:active {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.15);
    }

    .cs_download_btn:active {
        transform: scale(0.98);
    }
}