/* Business Service Component Styles */

#business-service {
    /* Custom styles specific to business service */
    overflow: visible !important;
}

#business-service .service-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

#business-service .service-showcase-img {
    width: 70%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 0;
}

#business-service:hover .service-showcase-img {
    transform: scale(1.02);
}

#business-service .pwa-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    margin: 2rem 0;
}

#business-service .pwa-highlight h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

#business-service .pwa-benefit {
    color: #1e40af;
    font-weight: 500;
    font-style: italic;
    margin-top: 0.8rem;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #business-service .service-image-wrapper {
        margin-bottom: 1.5rem;
        min-height: 300px;
    }

    #business-service .service-showcase-img {
        width: 90%;
    }

    #business-service .pwa-highlight {
        padding: 20px;
    }
}

/* Benefit List with Custom Images */
#business-service .benefit-list-with-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

#business-service .benefit-list-with-images li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

#business-service .benefit-list-with-images li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

#business-service .benefit-list-with-images li:hover::before {
    transform: scaleX(1);
}

#business-service .benefit-list-with-images li:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.2);
    border-color: var(--secondary-color);
}

#business-service .benefit-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.4s ease;
}

#business-service .benefit-list-with-images li:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(59, 130, 246, 0.3));
}

#business-service .benefit-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#business-service .benefit-content strong {
    color: var(--primary-color);
    font-size: 1.15rem;
    display: block;
    font-weight: 600;
    transition: color 0.3s ease;
}

#business-service .benefit-list-with-images li:hover .benefit-content strong {
    color: var(--secondary-color);
}

#business-service .benefit-content span {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

#business-service .benefit-list-with-images li:hover .benefit-content span {
    color: #475569;
}

@media (max-width: 768px) {
    #business-service .benefit-list-with-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #business-service .benefit-icon {
        width: 90px;
        height: 90px;
    }

    #business-service .benefit-list-with-images li {
        padding: 30px 20px;
    }

    #business-service .benefit-content strong {
        font-size: 1.08rem;
    }

    #business-service .benefit-content span {
        font-size: 0.92rem;
    }
}

/* Floating Icons Animation */
#business-service .floating-icon {
    position: absolute;
    width: 140px;
    height: 140px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

#business-service .floating-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

#business-service .floating-icon-2 {
    top: 10%;
    right: 10%;
    animation-delay: 0.5s;
}

#business-service .floating-icon-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 1s;
}

#business-service .floating-icon-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

@media (max-width: 768px) {
    #business-service .floating-icon {
        width: 90px;
        height: 90px;
    }

    #business-service .floating-icon-1 {
        left: 5%;
        top: 5%;
    }

    #business-service .floating-icon-2 {
        right: 5%;
        top: 5%;
    }

    #business-service .floating-icon-3 {
        left: 5%;
        bottom: 5%;
    }

    #business-service .floating-icon-4 {
        right: 5%;
        bottom: 5%;
    }
}

/* Styled Heading */
#business-service h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

#business-service .highlight-text {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

#business-service .service-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

#business-service .service-intro strong {
    color: #FF6B35;
    font-weight: 600;
}

/* Simple List Style */
#business-service .simple-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.5rem 0;
}

#business-service .simple-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #555;
    font-size: 1rem;
}

#business-service .simple-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    #business-service h3 {
        font-size: 1.6rem;
    }

    #business-service .service-intro {
        font-size: 1.05rem;
    }

    #business-service .simple-list li {
        font-size: 0.95rem;
    }
}