/* About Section Styles */
.about-section {
    padding: 8rem 0 4rem;
    background-color: var(--color-background-light);
}

.about-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-section__image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-section__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-section__image:hover img {
    transform: scale(1.05);
}

.about-section__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-section__text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-secondary);
}

.about-section__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-secondary);
}

/* Team Section Styles */
.team-section {
    padding: 6rem 0;
    background-color: white;
}

.team-tabs__header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.team-tab {
    padding: 1rem 2rem;
    border: none;
    background: none;
    font-size: 1.125rem;
    color: var(--color-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.team-tab:hover {
    color: var(--color-accent);
}

.team-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-accent);
}

/* Update tab content styles */
.team-tabs__content {
    position: relative;
    min-height: 400px;
    padding: 2rem 0;
}

.team-tab-content {
    display: none;
}

.team-tab-content.active {
    display: block;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--color-background-light);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member__image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member.visible .team-member__image {
    transform: scale(1);
}

.team-member__name {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.team-member.visible .team-member__name {
    opacity: 1;
    transform: translateY(0);
}

.team-member__title {
    color: var(--color-secondary);
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.team-member.visible .team-member__title {
    opacity: 1;
    transform: translateY(0);
}

/* CV Section Styles */
.cv-section {
    padding: 6rem 0;
    background-color: var(--color-background-light);
}

.cv-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cv-text {
    margin-bottom: 3rem;
}

.cv-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: var(--color-primary);
    color: var(--color-accent);;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.download-icon {
    font-size: 1.5rem;
}

.download-arrow {
    font-size: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-tabs__header {
        gap: 0.5rem;
    }

    .team-tab {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .team-member__image {
        width: 150px;
        height: 150px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
} 

.service-detail.reverse {
    display: flex;
    flex-direction: row-reverse;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 768px) {
    .service-detail,
    .service-detail.reverse {
        flex-direction: column !important;
    }
} 