/* Company Profile Page Styles */

/* Company Overview Section */
.company-overview {
    padding: 80px 0;
    background-color: #fff;
}

.company-overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 36px;
    color: #242424;
    margin-bottom: 24px;
    font-weight: 500;
}

.overview-text .lead {
    font-size: 20px;
    line-height: 1.6;
    color: #242424;
    margin-bottom: 20px;
    font-weight: 400;
}

.overview-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #515154;
    margin-bottom: 16px;
}

.overview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1c2834 0%, #2d3e50 100%);
}

.stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 36px;
    font-weight: 700;
    color: #0071e3;
    display: inline-block;
    margin-left: -5px;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.5;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.experience-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.experience-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.experience-header h2 {
    font-size: 36px;
    color: #242424;
    margin-bottom: 20px;
    font-weight: 500;
}

.experience-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #515154;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.experience-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.exp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0071e3 0%, #00c6fb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
}

.experience-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #242424;
    margin-bottom: 12px;
}

.experience-card p {
    font-size: 16px;
    color: #515154;
    line-height: 1.5;
}

/* Business Section */
.business-section {
    padding: 80px 0;
    background-color: #fff;
}

.business-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.business-section h2 {
    font-size: 36px;
    color: #242424;
    margin-bottom: 50px;
    font-weight: 500;
    text-align: center;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.business-card {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.business-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.business-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0071e3 0%, #00c6fb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.business-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #242424;
    margin-bottom: 12px;
}

.business-card p {
    font-size: 15px;
    color: #515154;
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf0 100%);
}

.leadership-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.leadership-section h2 {
    font-size: 36px;
    color: #242424;
    margin-bottom: 16px;
    font-weight: 500;
    text-align: center;
}

.leadership-section .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;
    color: #515154;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.leader-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leader-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: #242424;
    margin-bottom: 8px;
}

.leader-title {
    display: inline-block;
    background: linear-gradient(135deg, #0071e3 0%, #00c6fb 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.leader-credentials {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leader-credentials li {
    font-size: 14px;
    color: #515154;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.leader-credentials li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #0071e3;
    border-radius: 50%;
}

/* Locations Section Override */
.locations-section {
    padding: 80px 0;
    background-color: #fff;
}

.locations-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #242424;
    font-weight: 500;
}

.locations-section .locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.locations-section .location-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.locations-section .location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.locations-section .location-card.headquarters {
    background: linear-gradient(135deg, #1c2834 0%, #2d3e50 100%);
    color: #fff;
}

.locations-section .location-card.headquarters h3,
.locations-section .location-card.headquarters .location-desc {
    color: #fff;
}

.locations-section .location-card.headquarters .address {
    color: #e6e9ec;
}

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0071e3;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.locations-section .location-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #242424;
    margin-bottom: 8px;
}

.location-desc {
    font-size: 14px;
    color: #0071e3;
    font-weight: 500;
    margin-bottom: 12px;
}

.locations-section .location-card .address {
    font-size: 14px;
    color: #515154;
    line-height: 1.5;
}

/* CTA Section */
.profile-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0071e3 0%, #00c6fb 100%);
    text-align: center;
    color: #fff;
}

.profile-cta .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.profile-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 500;
}

.profile-cta p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-buttons .cta-button.primary {
    background: #fff;
    color: #0071e3;
}

.cta-buttons .cta-button.primary:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.cta-buttons .cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-buttons .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: scale(1.05);
}

/* Animations */
.stat-card,
.experience-card,
.business-card,
.leader-card,
.location-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.experience-card:nth-child(1) { animation-delay: 0.1s; }
.experience-card:nth-child(2) { animation-delay: 0.2s; }
.experience-card:nth-child(3) { animation-delay: 0.3s; }

.business-card:nth-child(1) { animation-delay: 0.1s; }
.business-card:nth-child(2) { animation-delay: 0.15s; }
.business-card:nth-child(3) { animation-delay: 0.2s; }
.business-card:nth-child(4) { animation-delay: 0.25s; }
.business-card:nth-child(5) { animation-delay: 0.3s; }
.business-card:nth-child(6) { animation-delay: 0.35s; }

.leader-card:nth-child(1) { animation-delay: 0.1s; }
.leader-card:nth-child(2) { animation-delay: 0.15s; }
.leader-card:nth-child(3) { animation-delay: 0.2s; }
.leader-card:nth-child(4) { animation-delay: 0.25s; }
.leader-card:nth-child(5) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-image {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-grid,
    .business-grid,
    .leadership-grid,
    .locations-section .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .company-overview,
    .stats-section,
    .experience-section,
    .business-section,
    .leadership-section,
    .locations-section {
        padding: 60px 0;
    }
    
    .overview-text h2,
    .experience-header h2,
    .business-section h2,
    .leadership-section h2,
    .locations-section h2 {
        font-size: 28px;
    }
    
    .overview-text .lead {
        font-size: 18px;
    }
    
    .stats-grid,
    .experience-grid,
    .business-grid,
    .leadership-grid,
    .locations-section .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 44px;
    }
    
    .profile-cta {
        padding: 60px 0;
    }
    
    .profile-cta h2 {
        font-size: 28px;
    }
    
    .profile-cta p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stat-card,
    .experience-card,
    .business-card,
    .leader-card,
    .location-card {
        padding: 25px 20px;
    }
    
    .experience-card h3 {
        font-size: 24px;
    }
}
