:root {
    --blue-dark: #0d47a1;
    --blue-medium: #1565c0;
    --blue-soft: #e3f2fd;
    --blue-accent: #42a5f5;
    --blue-light: #64b5f6;
    --text-dark: #0f1f33;
    --text-medium: #547aa5;
}


/* Decorative Background */
.botanical-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
}

.botanical-bg::before,
.botanical-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-image: radial-gradient(circle, var(--blue-medium) 2px, transparent 2px);
    background-size: 40px 40px;
}

.botanical-bg::before {
    top: -100px;
    left: -100px;
    transform: rotate(15deg);
}

.botanical-bg::after {
    bottom: -100px;
    right: -100px;
    transform: rotate(-15deg);
}

/* Team Section */
.team-section {
    padding: 90px 8%;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.team-header {
    text-align: center;
    margin-bottom: 70px;
}

.team-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--blue-dark);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.decorative-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,
            var(--blue-medium),
            var(--blue-accent),
            var(--blue-medium));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.team-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-style: italic;
    font-weight: 400;
}

.team-phone {
    color: #1E5FD8;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.team-phone i {
    font-size: 14px;
}

.team-phone a {
    color: #1E5FD8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-phone a:hover {
    color: #0B2C6B;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Team Card */
.team-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 71, 161, 0.08);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1E5FD8, #A5C9FF);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(13, 71, 161, 0.18);
    border-color: rgba(66, 165, 245, 0.35);
}

.team-card:hover::after {
    bottom: -40px;
    right: -40px;
    background: radial-gradient(circle,
            rgba(66, 165, 245, 0.18) 0%,
            transparent 70%);
}

/* Avatar */
.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-medium));
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 8px 24px rgba(21, 101, 192, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .avatar {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(21, 101, 192, 0.4);
}

/* Team Info */
.team-card-content {
    position: relative;
    z-index: 1;
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--blue-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.team-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 12px;
}

/* Icon */
.leaf-icon {
    width: 28px;
    height: 28px;
    margin: 20px auto 0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.team-card:hover .leaf-icon {
    opacity: 0.85;
    transform: rotate(15deg);
}

/* Responsive */
@media (max-width: 768px) {
    .team-section {
        padding: 60px 5%;
    }

    .team-header h2 {
        font-size: 2.2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .team-card {
        padding: 40px 30px;
    }

    .avatar {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .team-header h2 {
        font-size: 1.8rem;
    }

    .team-card h3 {
        font-size: 1.4rem;
    }

    .team-card p {
        font-size: 0.95rem;
    }
}