/* Expertise Block Styles */
.pmk-expertise-block {
    background-color: var(--pmk-white);
}

.pmk-expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Column */
.pmk-expertise-image {
    display: flex;
    justify-content: center;
}

.pmk-image-wrapper {
    position: relative;
}

.pmk-image-dots {
    position: absolute;
    top: -30px;
    left: -60px;
    width: 200px;
    height: 300px;
    background-image: radial-gradient(circle, var(--pmk-primary) 4px, transparent 4px);
    background-size: 20px 20px;
    z-index: 0;
}

.pmk-image-frame {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 8px solid var(--pmk-primary);
    border-radius: 12px;
    z-index: 0;
}

.pmk-image-wrapper .pmk-img {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

/* Content Column */
.pmk-expertise-content {
    padding-right: 40px;
}

.pmk-expertise-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--pmk-secondary);
    margin: 15px 0 20px;
    line-height: 1.3;
}

.pmk-expertise-heading .pmk-title-highlight {
    color: var(--pmk-primary);
    display: inline;
    background-image: linear-gradient(to right, rgba(231, 43, 42, 0.2) 0%, rgba(231, 43, 42, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 85%;
}

.pmk-expertise-desc {
    color: var(--pmk-gray-600);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Stats */
.pmk-expertise-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.pmk-stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--pmk-primary);
    margin: 0;
    line-height: 1;
}

.pmk-stat-value-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.pmk-stat-note {
    font-size: 14px;
    color: var(--pmk-gray-500);
}

.pmk-stat-label {
    font-size: 14px;
    color: var(--pmk-gray-500);
    display: block;
    margin-top: 10px;
}

.pmk-stat-stars {
    display: flex;
    gap: 2px;
    margin-top: 5px;
}

.pmk-stat-stars svg {
    width: 18px;
    height: 18px;
    color: var(--pmk-primary);
}

/* Features List */
.pmk-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pmk-features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.pmk-features-list li svg {
    width: 12px;
    height: 12px;
    color: var(--pmk-primary);
    flex-shrink: 0;
}

.pmk-features-list li span {
    font-size: 16px;
    font-weight: 600;
    color: var(--pmk-secondary);
}

/* Responsive */
@media (max-width: 992px) {
    .pmk-expertise-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pmk-expertise-content {
        padding-right: 0;
    }

    .pmk-image-dots {
        display: none;
    }

    .pmk-image-frame {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: -15px;
    }
}

@media (max-width: 768px) {
    .pmk-expertise-heading {
        font-size: 28px;
    }

    .pmk-stat-value {
        font-size: 32px;
    }

    .pmk-expertise-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
