/* =====================================================
   Founder Section Styles
   ===================================================== */

.founder-section {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 450px;
    margin: 0 auto;
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
}

.founder-badge i {
    color: var(--primary);
    font-size: 1.5rem;
}

.founder-badge span {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.founder-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.founder-name {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.founder-title {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-bio p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1rem;
}

.founder-bio strong {
    color: var(--dark);
    font-weight: 600;
}

.founder-highlights h4,
.founder-expertise h4,
.founder-credentials h4 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-light);
    border-radius: 15px;
    transition: var(--transition);
}

.highlight-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.highlight-item i {
    font-size: 1.75rem;
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-item:hover i {
    color: var(--white);
}

.highlight-item span {
    font-size: 1rem;
    line-height: 1.5;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--gray);
    padding: 0.75rem;
    background: var(--gray-light);
    border-radius: 10px;
    transition: var(--transition);
}

.credentials-list li:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateX(5px);
}

.credentials-list i {
    color: var(--primary);
    font-size: 1.25rem;
}

.credentials-list li:hover i {
    color: var(--white);
}

.credentials-list strong {
    color: var(--dark);
}

.credentials-list li:hover strong {
    color: var(--white);
}

.founder-contact {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.founder-contact .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-image {
        max-width: 400px;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .founder-title {
        font-size: 1.25rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-contact {
        flex-direction: column;
    }
    
    .founder-contact .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .founder-badge {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .founder-badge span {
        font-size: 0.9rem;
    }
    
    .expertise-tags {
        gap: 0.75rem;
    }
    
    .tag {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}
