/* AWJQ公司介绍页面样式 - jtgdjt.com */
:root {
    --corporate-blue: #1e40af;
    --corporate-purple: #7c3aed;
    --tech-cyan: #0891b2;
    --accent-orange: #ea580c;
    --success-green: #059669;
    --text-primary: #1f2937;
    --text-secondary: #f9fafb;
    --text-muted: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--corporate-blue), var(--corporate-purple));
    --gradient-tech: linear-gradient(135deg, var(--tech-cyan), var(--corporate-blue));
    --gradient-success: linear-gradient(135deg, var(--success-green), var(--tech-cyan));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
    background: var(--bg-white);
    min-height: 100vh;
    box-shadow: 0 0 60px rgba(0,0,0,0.3);
}

.about-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.logo-link {
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-item {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 0;
}

.nav-item:hover {
    color: var(--corporate-blue);
    transform: translateY(-2px);
}

.nav-item.active {
    color: var(--corporate-blue);
    font-weight: 600;
}

.contact-btn {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
}

.main-content {
    margin-top: 90px;
}

.about-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 5rem 0;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    text-align: center;
}

.company-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
}

.overview-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
}

.overview-description {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.company-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.company-culture {
    background: var(--bg-white);
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.culture-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.culture-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

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

.culture-description {
    color: var(--text-muted);
    line-height: 1.7;
}

.development-timeline {
    background: var(--bg-light);
    padding: 5rem 0;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--accent-orange);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.timeline-year {
    background: var(--corporate-blue);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -1rem;
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    width: 45%;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--corporate-blue);
    margin-bottom: 1rem;
}

.timeline-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.timeline-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

.leadership-team {
    background: var(--bg-white);
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-orange);
    flex-shrink: 0;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--corporate-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-background {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-achievements {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.achievement {
    padding: 0.3rem 0.8rem;
    background: var(--bg-white);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--corporate-blue);
    border: 1px solid var(--border-light);
}

.company-honors {
    background: var(--bg-light);
    padding: 5rem 0;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.honor-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.honor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.honor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

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

.honor-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.honor-date {
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.main-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-secondary);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--accent-orange);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .company-overview {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item::before {
        left: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}