/* What We Offer Page Professional Enhancement */
/* This file enhances the professional look of specific sections on the what-we-offer page */

/* Enhanced Services Section - Professional End-to-End Solutions */
.what-we-offer-page .services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.what-we-offer-page .services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%23660099" opacity="0.04"/><polygon points="15,15 25,25 15,35 5,25" fill="%23e98e39" opacity="0.03"/><circle cx="45" cy="45" r="1" fill="%23b0d7ab" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23services-pattern)"/></svg>');
    z-index: 1;
}

.what-we-offer-page .services-section .container {
    position: relative;
    z-index: 2;
}

.what-we-offer-page .services-section .section-header-modern {
    margin-bottom: 4rem;
}

.what-we-offer-page .services-section .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-we-offer-page .services-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Service Cards */
.what-we-offer-page .service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(102, 0, 153, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(102, 0, 153, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
}

.what-we-offer-page .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.what-we-offer-page .service-card:hover::before {
    transform: scaleX(1);
}

.what-we-offer-page .service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 12px 35px rgba(102, 0, 153, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(102, 0, 153, 0.2);
}

/* Enhanced Service Card Icons */
.what-we-offer-page .service-card .card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 0, 153, 0.3);
}

.what-we-offer-page .service-card .card-icon-wrapper .icon-emoji {
    font-size: 2.5rem;
    line-height: 1;
    text-align: center;
}

.what-we-offer-page .service-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 0, 153, 0.4);
}

/* Enhanced Service Card Content */
.what-we-offer-page .service-card .card-content h4 {
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.what-we-offer-page .service-card .card-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Enhanced Products Section - Professional Product Range */
.what-we-offer-page .products-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.what-we-offer-page .products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="products-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23660099" opacity="0.03"/><circle cx="60" cy="60" r="1.5" fill="%23e98e39" opacity="0.02"/><polygon points="40,10 50,20 40,30 30,20" fill="%23b0d7ab" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23products-pattern)"/></svg>');
    z-index: 1;
}

.what-we-offer-page .products-section .container {
    position: relative;
    z-index: 2;
}

.what-we-offer-page .products-section .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-we-offer-page .products-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Product Cards */
.what-we-offer-page .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.what-we-offer-page .product-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(102, 0, 153, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(102, 0, 153, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.what-we-offer-page .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.what-we-offer-page .product-card:hover::before {
    transform: scaleX(1);
}

.what-we-offer-page .product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 12px 35px rgba(102, 0, 153, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(102, 0, 153, 0.2);
}

/* Enhanced Product Card Icons */
.what-we-offer-page .product-card .product-image {
    width: 100% !important;
    height: 200px !important;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-green) 100%) !important;
    border-radius: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--white) !important;
    font-size: 2.5rem !important;
    margin-bottom: 2rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(102, 0, 153, 0.3) !important;
    padding: 20px !important;
    overflow: hidden !important;
}

.what-we-offer-page .product-card .product-image .product-icon-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 24px !important;
    transition: all 0.3s ease !important;
}

.what-we-offer-page .product-card .product-image .icon-emoji {
    font-size: 3rem;
    line-height: 1;
    text-align: center;
}

.what-we-offer-page .product-card:hover .product-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 0, 153, 0.4);
}

/* Enhanced Product Card Content */
.what-we-offer-page .product-card .product-content h4 {
    font-family: var(--font-header);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.what-we-offer-page .product-card .product-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Enhanced Feature Lists */
.what-we-offer-page .product-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.what-we-offer-page .product-card .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.what-we-offer-page .product-card .feature-list li .icon-emoji {
    margin-right: 0.75rem;
    font-size: 1rem;
    line-height: 1;
}

/* Enhanced Product Card Buttons */
.what-we-offer-page .product-card .btn {
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.what-we-offer-page .product-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Benefits Section - Why Choose Tulima Solar? */
.what-we-offer-page .benefits-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.what-we-offer-page .benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="benefits-pattern" width="70" height="70" patternUnits="userSpaceOnUse"><circle cx="35" cy="35" r="1.5" fill="%23660099" opacity="0.04"/><polygon points="17,17 28,28 17,39 6,28" fill="%23e98e39" opacity="0.03"/><circle cx="52" cy="52" r="1" fill="%23b0d7ab" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23benefits-pattern)"/></svg>');
    z-index: 1;
}

.what-we-offer-page .benefits-section .container {
    position: relative;
    z-index: 2;
}

.what-we-offer-page .benefits-section .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-we-offer-page .benefits-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Enhanced Benefits Grid */
.what-we-offer-page .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Enhanced Benefit Items */
.what-we-offer-page .benefit-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(102, 0, 153, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(102, 0, 153, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.what-we-offer-page .benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.what-we-offer-page .benefit-item:hover::before {
    transform: scaleX(1);
}

.what-we-offer-page .benefit-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 12px 35px rgba(102, 0, 153, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(102, 0, 153, 0.2);
}

/* Enhanced Benefit Icons */
.what-we-offer-page .benefit-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-green) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 0, 153, 0.3);
}

.what-we-offer-page .benefit-icon .icon-emoji {
    font-size: 2rem;
    line-height: 1;
    text-align: center;
}

.what-we-offer-page .benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 0, 153, 0.4);
}

/* Enhanced Benefit Content */
.what-we-offer-page .benefit-content {
    flex: 1;
    min-width: 0;
}

.what-we-offer-page .benefit-content h5 {
    font-family: var(--font-header);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.what-we-offer-page .benefit-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Enhanced Financing Section - Flexible Professional Financing */
.what-we-offer-page .financing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.what-we-offer-page .financing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="financing-pattern" width="90" height="90" patternUnits="userSpaceOnUse"><circle cx="45" cy="45" r="2" fill="%23660099" opacity="0.03"/><polygon points="22,22 33,33 22,44 11,33" fill="%23e98e39" opacity="0.02"/><circle cx="67" cy="67" r="1.5" fill="%23b0d7ab" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23financing-pattern)"/></svg>');
    z-index: 1;
}

.what-we-offer-page .financing-section .container {
    position: relative;
    z-index: 2;
}

.what-we-offer-page .financing-section .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-we-offer-page .financing-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* CTA Feature Icons */
.what-we-offer-page .cta-features .feature .icon-emoji {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .what-we-offer-page .services-section,
    .what-we-offer-page .products-section,
    .what-we-offer-page .benefits-section,
    .what-we-offer-page .financing-section {
        padding: 4rem 0;
    }
    
    .what-we-offer-page .services-section .section-title,
    .what-we-offer-page .products-section .section-title,
    .what-we-offer-page .benefits-section .section-title,
    .what-we-offer-page .financing-section .section-title {
        font-size: 2.5rem;
    }
    
    .what-we-offer-page .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .what-we-offer-page .service-card,
    .what-we-offer-page .product-card {
        padding: 2rem;
    }
    
    .what-we-offer-page .service-card .card-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        padding: 6px;
    }
    
    .what-we-offer-page .product-card .product-image {
        width: 100% !important;
        height: 150px !important;
        padding: 15px !important;
    }
    
    .what-we-offer-page .benefit-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .what-we-offer-page .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .what-we-offer-page .services-section .section-title,
    .what-we-offer-page .products-section .section-title,
    .what-we-offer-page .benefits-section .section-title,
    .what-we-offer-page .financing-section .section-title {
        font-size: 2rem;
    }
    
    .what-we-offer-page .services-section .section-subtitle,
    .what-we-offer-page .products-section .section-subtitle,
    .what-we-offer-page .benefits-section .section-subtitle,
    .what-we-offer-page .financing-section .section-subtitle {
        font-size: 1rem;
    }
    
    .what-we-offer-page .service-card,
    .what-we-offer-page .product-card {
        padding: 1.5rem;
    }
    
    .what-we-offer-page .benefit-item {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .what-we-offer-page .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .what-we-offer-page .services-section,
    .what-we-offer-page .products-section,
    .what-we-offer-page .benefits-section,
    .what-we-offer-page .financing-section {
        padding: 3rem 0;
    }
    
    .what-we-offer-page .services-section .section-title,
    .what-we-offer-page .products-section .section-title,
    .what-we-offer-page .benefits-section .section-title,
    .what-we-offer-page .financing-section .section-title {
        font-size: 1.8rem;
    }
    
    .what-we-offer-page .service-card,
    .what-we-offer-page .product-card {
        padding: 1.25rem;
    }
    
    .what-we-offer-page .service-card .card-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        padding: 5px;
    }
    
    .what-we-offer-page .product-card .product-image {
        width: 100% !important;
        height: 120px !important;
        padding: 10px !important;
    }
    
    .what-we-offer-page .benefit-item {
        padding: 1rem;
    }
    
    .what-we-offer-page .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
