/* Global X Talent Page - Professional Styles */

/* 品牌配色 */
:root {
    --gxt-primary: #40C4C1;
    --gxt-primary-dark: #2A8889;
    --gxt-primary-light: #A3DFDE;
    --gxt-accent: #F7C94D;
    --gxt-accent-light: #B0BEC5;
    --gxt-bg: #F1F7F5;
}

/* Hero Section */
.global-x-talent-page .hero {
    background: linear-gradient(135deg, #40C4C1 0%, #2A8889 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.global-x-talent-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

.global-x-talent-page .hero-content {
    position: relative;
    z-index: 1;
}

.gxt-logo-container {
    margin-bottom: 30px;
}

.gxt-logo-image {
    height: 180px;
    width: auto;
    display: inline-block;
}

.global-x-talent-page .hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 20px;
}

/* Diamond Decorations */
.gxt-diamond-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(45deg);
    z-index: 0;
}

.gxt-diamond-decoration.top-left {
    top: 40px;
    left: 40px;
}

.gxt-diamond-decoration.bottom-right {
    bottom: 40px;
    right: 40px;
}

/* Platform Introduction - Simple Style */
.global-x-talent-page .platform-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.global-x-talent-page .intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.global-x-talent-page .section-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.global-x-talent-page .intro-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Core Features - Simple Professional Style */
.global-x-talent-page .core-features {
    background: var(--bg-white);
    padding: 80px 0;
}

.global-x-talent-page .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.global-x-talent-page .feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.global-x-talent-page .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.global-x-talent-page .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #40C4C1, #2A8889);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.global-x-talent-page .feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.global-x-talent-page .feature-icon i {
    font-size: 36px;
    color: var(--text-white);
}

.global-x-talent-page .feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.global-x-talent-page .feature-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Product Features - Same as Core Features */
.global-x-talent-page .product-features {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Section Headers */
.global-x-talent-page .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.global-x-talent-page .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.global-x-talent-page .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #40C4C1, #A3DFDE);
    border-radius: 2px;
}

/* Case Studies - Carousel Style */
.global-x-talent-page .case-studies-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.case-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.case-carousel {
    position: relative;
    overflow: hidden;
}

.case-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.case-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.case-card {
    background: var(--bg-white);
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.case-number {
    font-size: 48px;
    font-weight: 800;
    color: #40C4C1;
    opacity: 0.2;
    margin-bottom: 20px;
}

.case-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.case-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-row:hover {
    background: #e9ecef;
}

.info-row.highlight {
    background: linear-gradient(135deg, rgba(64, 196, 193, 0.1), rgba(64, 196, 193, 0.05));
    border-left: 4px solid #40C4C1;
}

.info-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 100px;
    font-size: 15px;
}

.info-value {
    flex: 1;
    text-align: right;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    border: 2px solid #40C4C1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #40C4C1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn i {
    font-size: 20px;
    color: #40C4C1;
    transition: color 0.3s ease;
}

.carousel-btn:hover i {
    color: var(--text-white);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #40C4C1;
    width: 32px;
    border-radius: 6px;
}

/* QR Code Section */
.gxt-qr-section {
    background: linear-gradient(135deg, #40C4C1 0%, #2A8889 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.gxt-qr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

.gxt-qr-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gxt-qr-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.gxt-qr-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.gxt-qr-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.gxt-qr-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.gxt-qr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.gxt-qr-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    padding: 15px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gxt-qr-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.gxt-qr-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.gxt-qr-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #40C4C1, #2A8889);
    color: var(--text-white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.gxt-website-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--bg-white);
    color: #40C4C1;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gxt-website-btn:hover {
    background: #F7C94D;
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.gxt-website-btn i {
    transition: transform 0.3s ease;
}

.gxt-website-btn:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.global-x-talent-page .cta-section {
    background: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.global-x-talent-page .cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.global-x-talent-page .cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.global-x-talent-page .btn-primary {
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #40C4C1, #2A8889);
    border: none;
    border-radius: 30px;
    color: var(--text-white);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.global-x-talent-page .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(64, 196, 193, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .global-x-talent-page .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gxt-qr-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gxt-logo-image {
        height: 120px;
    }
    
    .global-x-talent-page .hero {
        padding: 80px 0 60px;
    }
    
    .global-x-talent-page .section-title {
        font-size: 28px;
    }
    
    .global-x-talent-page .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .global-x-talent-page .feature-card {
        padding: 30px 25px;
    }
    
    .case-card {
        padding: 30px 25px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn.prev {
        left: -10px;
    }
    
    .carousel-btn.next {
        right: -10px;
    }
    
    .gxt-qr-image {
        width: 180px;
        height: 180px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-label {
        min-width: auto;
    }
    
    .info-value {
        text-align: left;
    }
}
