/* About Page Styles */

/* Hero Section */
.about-hero {
    position: relative;
    padding: 160px 20px 100px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2f4a 50%, #0d2137 100%);
    color: white;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 113, 227, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 113, 227, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 113, 227, 0.2);
    border: 1px solid rgba(0, 113, 227, 0.4);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #5ba3f5;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a8d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #b8c5d6;
    max-width: 700px;
    margin: 0 auto 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
    padding: 30px 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;
}

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

.hero-stat .stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #0071e3;
    line-height: 1;
}

.hero-stat .stat-suffix {
    font-size: 32px;
    font-weight: 600;
    color: #0071e3;
}

.hero-stat .stat-label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #8fa3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Vision Section */
.about-vision {
    padding: 100px 20px;
    background: #f8f9fa;
}

.about-vision .container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #0071e3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    line-height: 1.2;
}

.vision-chinese {
    font-size: 24px;
    color: #515154;
    margin-bottom: 24px;
    font-style: italic;
}

.vision-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #515154;
    margin-bottom: 30px;
}

.vision-link {
    display: inline-flex;
    align-items: center;
    color: #0071e3;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vision-link:hover {
    color: #0056b3;
}

.vision-graphic {
    background: linear-gradient(135deg, #1a2f4a 0%, #0d2137 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
}

.brand-name-display {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 40px;
}

.brand-name-display .win {
    color: #ffffff;
}

.brand-name-display .trust {
    color: #0071e3;
}

.brand-meanings {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.meaning {
    text-align: center;
}

.meaning .chinese {
    display: block;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
}

.meaning .english {
    display: block;
    font-size: 14px;
    color: #8fa3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meaning-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Explore Section */
.about-explore {
    padding: 100px 20px;
    background: #ffffff;
}

.about-explore .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #515154;
    max-width: 600px;
}

.section-header.centered p {
    margin: 0 auto;
}

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

.explore-card {
    display: flex;
    gap: 24px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.explore-card:hover {
    background: #ffffff;
    border-color: #e5e5e5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0071e3 0%, #0056b3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.explore-card:hover .card-icon {
    transform: scale(1.05);
}

.card-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 16px;
}

.card-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.card-highlights li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #515154;
}

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

.card-link {
    display: inline-block;
    color: #0071e3;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.explore-card:hover .card-link {
    color: #0056b3;
}

/* Card color variations */
.profile-card .card-icon {
    background: linear-gradient(135deg, #0071e3 0%, #0056b3 100%);
}

.qualification-card .card-icon {
    background: linear-gradient(135deg, #34c759 0%, #28a745 100%);
}

.culture-card .card-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

.employees-card .card-icon {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

/* Business Section */
.about-business {
    padding: 100px 20px;
    background: #1c2834;
    color: white;
}

.about-business .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-business .section-header h2 {
    color: white;
}

.about-business .section-header p {
    color: #b8c5d6;
}

.about-business .section-badge {
    background: rgba(0, 113, 227, 0.2);
    color: #5ba3f5;
}

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

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

.business-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.business-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 113, 227, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0071e3;
}

.business-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.business-item p {
    font-size: 15px;
    line-height: 1.5;
    color: #b8c5d6;
}

.business-cta {
    text-align: center;
}

.business-cta .cta-button {
    background: #0071e3;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.business-cta .cta-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Leadership Section */
.about-leadership {
    padding: 100px 20px;
    background: #ffffff;
}

.about-leadership .container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.leader-preview {
    text-align: center;
}

.leader-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f0f0f0;
    transition: all 0.3s ease;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-preview:hover .leader-image {
    border-color: #0071e3;
    transform: scale(1.05);
}

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

.leader-title {
    display: block;
    font-size: 15px;
    color: #0071e3;
    font-weight: 500;
    margin-bottom: 12px;
}

.leader-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #515154;
    max-width: 280px;
    margin: 0 auto;
}

.leadership-cta {
    text-align: center;
}

.link-button {
    display: inline-block;
    color: #0071e3;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-button:hover {
    color: #0056b3;
}

/* Locations Section */
.about-locations {
    padding: 100px 20px;
    background: #f8f9fa;
}

.about-locations .container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.location-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.location-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.location-item.headquarters {
    grid-column: span 2;
    background: linear-gradient(135deg, #0a1628 0%, #1a2f4a 100%);
    color: white;
}

.location-item.headquarters .location-content h3 {
    color: white;
}

.location-item.headquarters .location-content p {
    color: #b8c5d6;
}

.location-marker {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0071e3;
}

.location-item.headquarters .location-marker {
    background: rgba(0, 113, 227, 0.3);
}

.location-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #0071e3;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.location-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 6px;
}

.location-content p {
    font-size: 14px;
    color: #515154;
    line-height: 1.5;
}

/* Promise Section */
.about-promise {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0071e3 0%, #0056b3 100%);
    color: white;
    text-align: center;
}

.about-promise .container {
    max-width: 1000px;
    margin: 0 auto;
}

.promise-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.promise-slogan {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
}

.promise-chinese {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 50px;
}

.promise-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.promise-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.promise-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.promise-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.promise-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.promise-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* CTA Section */
.about-cta {
    padding: 100px 20px;
    background: #1c2834;
    color: white;
    text-align: center;
}

.about-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

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

.about-cta > .container > p {
    font-size: 18px;
    color: #b8c5d6;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.cta-button.primary {
    background: #0071e3;
    color: white;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button.primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 42px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .explore-grid {
        grid-template-columns: 1fr;
    }
    
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-map {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-item.headquarters {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 140px 20px 80px;
    }
    
    .about-hero h1 {
        font-size: 32px;
    }
    
    .about-hero p {
        font-size: 17px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-stat {
        padding: 20px 15px;
    }
    
    .hero-stat .stat-value {
        font-size: 36px;
    }
    
    .vision-text h2 {
        font-size: 28px;
    }
    
    .brand-name-display {
        font-size: 42px;
    }
    
    .brand-meanings {
        flex-direction: column;
        gap: 20px;
    }
    
    .meaning-divider {
        width: 50px;
        height: 1px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .explore-card {
        flex-direction: column;
        padding: 30px;
    }
    
    .card-icon {
        width: 64px;
        height: 64px;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .locations-map {
        grid-template-columns: 1fr;
    }
    
    .location-item.headquarters {
        grid-column: span 1;
    }
    
    .promise-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promise-content h2 {
        font-size: 32px;
    }
    
    .promise-slogan {
        font-size: 22px;
    }
    
    .about-cta h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 28px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-stat .stat-value {
        font-size: 32px;
    }
    
    .hero-stat .stat-label {
        font-size: 12px;
    }
}

/* Animation for stats counter */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stat {
    animation: countUp 0.6s ease-out forwards;
}

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