/* Our Team Section Styles */
.our-team {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.our-team .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-team .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.our-team .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.our-team .section-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    padding-bottom: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 25px auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-light);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 10px 0 5px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    color: var(--text-medium);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-links a.facebook {
    background-color: #3b5998;
    color: var(--bg-white);
}

.social-links a.twitter {
    background-color: #1da1f2;
    color: var(--bg-white);
}

.social-links a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--bg-white);
}

.social-links a.linkedin {
    background-color: #0077b5;
    color: var(--bg-white);
}

/* Responsive Styles for Team Section */
@media screen and (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .our-team {
        padding: 60px 0;
    }
    
    .our-team .section-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
}

/* Customer Reviews Section */
.customer-reviews {
    padding: 90px 0;
    background: linear-gradient(120deg, var(--primary-light), rgba(255, 255, 255, 0.9));
    position: relative;
}

.customer-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-bg.png');
    opacity: 0.05;
    z-index: 1;
}

.customer-reviews .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.customer-reviews .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.customer-reviews .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.customer-reviews .section-header p {
    font-size: 1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 25px var(--shadow-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.review-content {
    margin-bottom: 25px;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
    opacity: 0.25;
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

.rating {
    display: flex;
    margin-bottom: 10px;
}

.rating i {
    color: #FFD700;
    margin-right: 3px;
    font-size: 0.9rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-light);
}

.reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.reviewer-details p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Responsive Styles for Reviews Section */
@media screen and (max-width: 992px) {
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .customer-reviews {
        padding: 70px 0;
    }
    
    .customer-reviews .section-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .reviews-slider {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .review-card {
        padding: 25px;
    }
}

