/* ==========================================
   ONE CONVEYANCING - TEAM PAGE
   Navy Blue Theme (No Gold)
========================================== */

/* ===========================
   PAGE BANNER
=========================== */

.oc-page-banner {
    position: relative;
    padding: 130px 0 100px;
    min-height: 380px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(6, 15, 36, 0.85) 0%,
            rgba(10, 22, 53, 0.75) 55%,
            rgba(18, 34, 74, 0.7) 100%
        ),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.oc-page-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 15, 36, 0.5) 0%,
        rgba(10, 22, 53, 0.3) 100%
    );
    z-index: 1;
}

.oc-page-banner .container {
    position: relative;
    z-index: 2;
}

.oc-page-banner__content {
    max-width: 800px;
}

.oc-page-banner__title {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.oc-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    font-weight: 500;
}

.oc-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.oc-breadcrumb a:hover {
    color: #ffffff;
}

.oc-breadcrumb i {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
}

.oc-breadcrumb span {
    color: #ffffff;
    font-weight: 600;
}

/* ============================
   TEAM SECTION
============================ */

.team-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 53, 0.03) 0%, rgba(10, 22, 53, 0.01) 100%);
    pointer-events: none;
}

/* ===== Section Header ===== */
.team-section .section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.team-section .section-badge {
    display: inline-block;
    background: rgba(10, 22, 53, 0.06);
    color: #0a1635;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(10, 22, 53, 0.15);
}

.team-section .section-title {
    font-size: 48px;
    font-weight: 800;
    color: #0a1635;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.team-section .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.team-section .divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0a1635);
}

.team-section .divider-line:last-child {
    background: linear-gradient(90deg, #0a1635, transparent);
}

.team-section .divider-dot {
    width: 8px;
    height: 8px;
    background: #0a1635;
    border-radius: 50%;
    position: relative;
}

.team-section .divider-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(10, 22, 53, 0.25);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.team-section .section-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-top: 20px;
}

/* ===== Team Cards ===== */
.team-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(10, 22, 53, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(10, 22, 53, 0.15);
    border-color: #0a1635;
}

/* ===== Team Image ===== */
.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f3f4f6;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 53, 0.85) 0%, rgba(26, 37, 71, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1635;
    text-decoration: none;
    font-size: 20px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-card:hover .social-link {
    transform: translateY(0);
}

.social-link:hover {
    background: #0a1635;
    color: #ffffff;
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(10, 22, 53, 0.35);
}

/* ===== Team Info ===== */
.team-info {
    padding: 30px;
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    color: #0a1635;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.team-role {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0a1635;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    opacity: 0.75;
}

.team-role::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0a1635;
    transition: width 0.3s ease;
}

.team-card:hover .team-role::after {
    width: 80px;
}

.team-bio {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a1635;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid #0a1635;
    border-radius: 50px;
    background: transparent;
}

.team-linkedin i {
    font-size: 16px;
}

.team-linkedin:hover {
    background: #0a1635;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10, 22, 53, 0.3);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .team-section .section-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .oc-page-banner {
        padding: 110px 0 80px;
        min-height: 320px;
    }

    .team-section {
        padding: 80px 0;
    }
    
    .team-section .section-title {
        font-size: 36px;
    }
    
    .team-info {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .oc-page-banner {
        padding: 90px 0 60px;
        min-height: 280px;
    }

    .team-section {
        padding: 60px 0;
    }
    
    .team-section .section-title {
        font-size: 32px;
    }
    
    .team-name {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .oc-page-banner {
        padding: 80px 0 50px;
        min-height: 240px;
    }

    .oc-breadcrumb {
        font-size: 0.85rem;
        gap: 10px;
    }

    .team-section .section-header {
        margin-bottom: 40px;
    }
    
    .team-section .section-badge {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .team-section .section-title {
        font-size: 28px;
    }
    
    .team-info {
        padding: 20px;
    }
    
    .team-bio {
        font-size: 13px;
    }
}