/**
 * Build PC Page - Expert Team Section Styles
 * 
 * These styles create the expert team section of the Build PC page,
 * showcasing the team's expertise and services offered to customers.
 * The styling is adapted from the mockup to follow the theme's naming conventions.
 *
 * @package ComputerVariations
 */

/* Main expert team section container */
.build-pc-expert-team {
    padding: var(--space-xxl) 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

/* Decorative circles for visual interest */
.build-pc-expert-team__circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.build-pc-expert-team__circle--1 {
    width: 300px;
    height: 300px;
    background-color: rgba(var(--primary-color-rgb), 0.05);
    top: -100px;
    left: -100px;
}

.build-pc-expert-team__circle--2 {
    width: 400px;
    height: 400px;
    background-color: rgba(var(--secondary-color-rgb), 0.05);
    bottom: -150px;
    right: -150px;
}

/* Header section with title and subtitle */
.build-pc-expert-team__header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

/* Main section title with decorative underline */
.build-pc-expert-team__title {
    font-family: var(--heading-font);
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

/* No decorative underline for the section title */

/* Subtitle with constrained width for better readability */
.build-pc-expert-team__subtitle {
    font-size: var(--font-size-lg);
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Content container with image and services list */
.build-pc-expert-team__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Team image container with styling */
.build-pc-expert-team__image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

/* Image styling with border radius and shadow */
.build-pc-expert-team__image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* Text content container beside the image */
.build-pc-expert-team__text {
    flex: 1;
    min-width: 300px;
    padding: 0 var(--space-lg);
}

/* Services list container */
.build-pc-expert-team__services {
    margin-top: var(--space-md);
}

/* Individual service card styling */
.build-pc-expert-team__service {
    display: flex;
    margin-bottom: var(--space-md);
    background-color: var(--white);
    border-radius: 10px;
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect for service cards */
.build-pc-expert-team__service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Service icon container styling */
.build-pc-expert-team__service-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-lg);
    font-size: 1.5rem;
}

/* Service title styling */
.build-pc-expert-team__service-title {
    font-family: var(--heading-font);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-md);
    margin-bottom: var(--space-xs);
    color: var(--dark-gray);
}

/* Service description text styling */
.build-pc-expert-team__service-description {
    color: var(--medium-gray);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* Call-to-action container at the bottom of the section */
.build-pc-expert-team__cta {
    text-align: center;
    margin-top: var(--space-xl);
    position: relative;
    z-index: 1;
}

/* Button styling for expert team section */
.build-pc-expert-team__button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-pill);
    font-family: var(--heading-font);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-md);
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    box-shadow: var(--shadow-sm);
}

/* Hover effect for the button */
.build-pc-expert-team__button:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
    .build-pc-expert-team__content {
        flex-direction: column;
    }

    .build-pc-expert-team__image {
        margin-bottom: var(--space-xl);
        max-width: 100%;
    }

    .build-pc-expert-team__text {
        padding: 0;
    }
}

/* Further adjustments for mobile screens */
@media (max-width: 576px) {
    .build-pc-expert-team__service {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .build-pc-expert-team__service-icon {
        margin-right: 0;
        margin-bottom: var(--space-md);
    }
}
