.team-ultra {
    background: #fff;
}

.team-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.team-hero {
    padding: 40px 0 35px;
    background: linear-gradient(135deg, rgba(0,117,201,0.04) 0%, rgba(0,166,81,0.04) 100%);
    border-bottom: 1px solid #e2e8f0;
}

.team-hero h1 {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    background: linear-gradient(135deg, #0075C9, #00A651);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 12px;
    text-align: center;
}

.hero-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.team-hero .breadcrumbs {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.team-grid-section {
    padding: 30px 0 80px;
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 80px 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
}

.team-intro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 166 81 / 58%), rgb(0 117 201 / 42%));
    z-index: 1;
}

.team-intro-content {
    position: relative;
    z-index: 2;
}

.team-icon {
    margin-bottom: 20px;
}

.team-icon svg {
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.team-icon svg path,
.team-icon svg circle {
    stroke: #fff !important;
}

.intro-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 2px solid rgba(255,255,255,0.3);
}

.team-intro h2 {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.team-intro::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #fff;
    margin: 20px auto 0;
    border-radius: 2px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.team-layout-3col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.team-column {
    display: contents;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #e2e8f0;
    padding: 25px;
}

.team-card::after {
    content: '';
    display: table;
    clear: both;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00A651, #0075C9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,166,81,0.15);
}

.team-card:hover::before {
    opacity: 1;
}

.member-image {
    position: relative;
    float: left;
    width: 400px;
    max-height: 280px;
    margin: 0 25px 15px 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 1;
}

.member-num {
    font-size: 60px;
    font-weight: 900;
    background: linear-gradient(135deg, #00A651, #0075C9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.9;
}

.member-info {
}

.member-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.member-position {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #00A651, #0075C9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.member-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.form-center {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.form-sticky {
    background: linear-gradient(135deg, rgba(0,166,81,0.03) 0%, rgba(0,117,201,0.03) 100%);
    border-radius: 20px;
    padding: 10px;
    border: 1px solid #e2e8f0;
}

.about-cta-inline {
    text-align: center;
    padding: 50px 35px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-cta-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00A651, #0075C9);
}

.about-cta-inline .cta-icon-wrap {
    margin-bottom: 25px;
}

.about-cta-inline .cta-icon-wrap svg {
    filter: drop-shadow(0 4px 15px rgba(0,166,81,0.3));
}

.about-cta-inline .cta-title {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #00A651, #0075C9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-cta-inline .cta-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-inline .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00A651, #0075C9);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,166,81,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.about-cta-inline .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,166,81,0.4);
    background: #fff;
    color: #00A651;
    border-color: #00A651;
}

.about-cta-inline .cta-button svg {
    transition: transform 0.3s ease;
}

.about-cta-inline .cta-button:hover svg {
    transform: translateX(6px);
}

.form-center .gallery-slider-section {
    grid-column: 1 / -1;
}

@media (max-width: 1100px) {
    .team-layout-3col {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .member-image {
        width: 350px;
        max-height: 260px;
    }

    .form-center {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .team-wrap {
        padding: 0 20px;
    }

    .team-hero {
        padding: 30px 0 25px;
    }

    .team-hero h1 {
        font-size: 26px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .team-intro {
        margin-bottom: 40px;
        padding: 60px 20px;
    }

    .team-icon svg {
        width: 40px;
        height: 40px;
    }

    .intro-label {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 8px 18px;
    }

    .team-intro h2 {
        font-size: 28px;
    }

    .team-layout-3col {
        gap: 20px;
    }

    .team-card {
        border-radius: 16px;
        padding: 20px;
    }

    .member-image {
        float: none;
        width: 100%;
        height: 200px;
        margin: 0 0 15px 0;
        border-radius: 12px;
    }

    .member-num {
        font-size: 48px;
    }

    .member-info h3 {
        font-size: 20px;
    }

    .member-position {
        font-size: 12px;
    }

    .member-info p {
        font-size: 14px;
    }

    .form-sticky {
        padding: 5px;
    }

    .about-cta-inline {
        padding: 35px 25px;
    }

    .about-cta-inline .cta-title {
        font-size: 24px;
    }

    .about-cta-inline .cta-desc {
        font-size: 15px;
    }

    .about-cta-inline .cta-button {
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .member-info h3 {
        font-size: 18px;
    }

    .member-info p {
        font-size: 13px;
    }

    .about-cta-inline .cta-title {
        font-size: 20px;
    }

    .about-cta-inline .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}
