/* ===================================
   TEAM PAGE - PREMIUM DESIGN
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #5E35B1, transparent);
    top: -250px;
    left: -250px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FFA726, transparent);
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #FF6F26, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

/* Fixed Logo */
.fixed-logo {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.fixed-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 167, 38, 0.3);
}

.fixed-logo img {
    height: 45px;
    width: auto;
    display: block;
}

/* Floating Dock Navigation */
.dock-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
}

.dock {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dock-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.dock-item::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(0, 0, 0, 0.9);
    color: #FFA726;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.dock-item:hover::before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.dock-item:hover {
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    color: #FFFFFF;
    transform: translateY(-8px) scale(1.1);
}

.dock-item.active {
    background: linear-gradient(135deg, #5E35B1, #FF6F26);
    color: #FFFFFF;
}

/* Hero Section */
.team-hero {
    position: relative;
    padding: 180px 0 120px;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 167, 38, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(94, 53, 177, 0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 111, 38, 0.4), transparent);
    background-size: 200px 200px, 300px 300px, 250px 250px;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 200px 200px, -300px 300px, 250px -250px; }
}

.team-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: rgba(255, 167, 38, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 167, 38, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: #FFA726;
    margin-bottom: 32px;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFA726;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 167, 38, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 15px rgba(255, 167, 38, 0); }
}

.team-hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 28px;
}

.gradient-text {
    background: linear-gradient(135deg, #5E35B1, #FFA726, #FF6F26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.team-hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease;
}

.animate-slide-up {
    animation: slideUp 0.8s ease;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.leadership-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.leader-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.leader-card:hover {
    transform: translateY(-16px);
    border-color: #FFA726;
    box-shadow: 0 32px 80px rgba(255, 167, 38, 0.3);
}

.leader-image-wrapper {
    position: relative;
    padding: 32px 32px 0;
}

.leader-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.leader-card:hover .leader-image img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
}

.leader-badge {
    position: absolute;
    top: 48px;
    right: 48px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(255, 111, 38, 0.5);
    z-index: 2;
}

.leader-content {
    padding: 32px;
}

.leader-name {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.leader-role {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFA726;
    margin-bottom: 20px;
}

.leader-bio {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.leader-stats {
    display: flex;
    gap: 32px;
    padding: 24px;
    background: rgba(255, 167, 38, 0.05);
    border-radius: 16px;
    margin-bottom: 24px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.leader-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 167, 38, 0.1);
    border-color: #FFA726;
    color: #FFA726;
}

.contact-link i {
    color: #FFA726;
}

.leader-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 167, 38, 0.1);
    border: 1px solid rgba(255, 167, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFA726;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-4px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: rgba(94, 53, 177, 0.05);
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: #FFA726;
    box-shadow: 0 16px 40px rgba(255, 167, 38, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #FFFFFF;
    box-shadow: 0 12px 32px rgba(255, 111, 38, 0.4);
}

.stat-content .stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    display: block;
}

.stat-content .stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #FFA726;
    box-shadow: 0 16px 40px rgba(255, 167, 38, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 167, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #FFA726;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    color: #FFFFFF;
    transform: scale(1.1);
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.value-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

/* Join CTA Section */
.join-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(94, 53, 177, 0.1), rgba(255, 111, 38, 0.1));
    text-align: center;
    position: relative;
    z-index: 2;
}

.join-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #FFFFFF;
    box-shadow: 0 12px 40px rgba(255, 111, 38, 0.4);
    animation: float 3s ease-in-out infinite;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.cta-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 111, 38, 0.4);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(255, 111, 38, 0.6);
    gap: 16px;
}

/* Footer - Same as other pages */
.footer {
    padding: 80px 0 40px;
    background: #000000;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 167, 38, 0.1);
    border: 1px solid rgba(255, 167, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFA726;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-4px);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FFA726;
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-contact i {
    color: #FFA726;
    font-size: 16px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom a {
    color: #FFA726;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #FF6F26;
}

.footer-bottom i {
    color: #FF6F26;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-hero {
        padding: 140px 0 80px;
    }
    
    .team-hero-title {
        font-size: 36px;
    }
    
    .leadership-grid,
    .stats-container,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .dock {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .dock-item {
        width: 42px;
        height: 42px;
    }
}
