.elementor-20940 .elementor-element.elementor-element-de48b86{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-ce79ea9 */.service-areas {
    padding: 20px 0 20px 0;
}

/* Header Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e6af5d, #d4941a);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(230, 175, 93, 0.3);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.title-gradient {
    background: linear-gradient(135deg, #e6af5d, #d4941a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.area-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e6af5d, #d4941a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(230, 175, 93, 0.25);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.area-card:hover .area-icon {
    transform: scale(1.1) rotate(5deg);
}

.area-icon i {
    font-size: 26px;
    color: white;
}

.area-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.3s ease;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 5px;
}

.area-card:hover .area-name {
    color: #e6af5d;
}

/* Responsive */
@media (max-width: 768px) {
    .service-areas {
        padding: 60px 0 100px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
        margin-bottom: 60px;
    }
    
    .area-card {
        height: 140px;
        padding: 25px 15px;
    }
    
    .area-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .area-icon i {
        font-size: 22px;
    }
    
    .area-name {
        font-size: 1.1rem;
        min-height: 35px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .area-card {
        height: 130px;
        padding: 20px 10px;
    }
    
    .area-name {
        font-size: 1rem;
        min-height: 30px;
    }
}/* End custom CSS */