/* Partnership Page Styles */

/* Partnership Hero Section */
.partnership-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/partnership-hero-bg.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.partnership-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content > p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Partnership Benefits */
.partnership-benefits {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Partnership Process */
.partnership-process {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

/* 横向显示样式 */
.process-timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 60px auto 0;
    max-width: 1200px;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
    position: relative;
}

.process-step-horizontal .step-content {
    margin: 20px 0;
}

.process-step-horizontal .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step-horizontal .step-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

.process-step-horizontal .step-arrow {
    position: absolute;
    right: -15px;
    top: 30px;
    color: #667eea;
    font-size: 1.2rem;
}

.process-step-horizontal:last-child .step-arrow {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.step-content {
    flex: 1;
    margin: 0 40px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .process-timeline-horizontal {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step-horizontal {
        margin-bottom: 40px;
        width: 100%;
        max-width: 300px;
    }
    
    .process-step-horizontal .step-arrow {
        position: static;
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .process-step-horizontal:last-child .step-arrow {
        display: none;
    }
}

/* Partnership Requirements */
.partnership-requirements {
    padding: 100px 0;
    background: #f8f9fa;
}

.requirements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.requirement-category {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.requirement-category h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirement-category h3 i {
    color: #667eea;
    font-size: 1.2rem;
}

.requirement-category ul {
    list-style: none;
    padding: 0;
}

.requirement-category li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.requirement-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Partnership Contact */
.partnership-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.method-content h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.method-content p {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-detail {
    font-weight: 600;
    color: #667eea;
    font-size: 1rem;
}

.business-hours {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.business-hours h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.business-hours p {
    color: #666;
    margin-bottom: 5px;
}

.qr-code-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.qr-code-container h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 25px;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border: 3px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-code-container > p {
    color: #666;
    margin-bottom: 5px;
}

.wechat-id {
    font-weight: 600;
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-save-qr {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-save-qr:hover {
    transform: translateY(-2px);
}

/* Partnership Form */
.partnership-form-section {
    padding: 100px 0;
    background: white;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.form-wrapper h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
}

.form-wrapper > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.partnership-form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.story-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partnership-hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content > p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: left;
        padding-left: 80px;
    }
    
    .process-step:nth-child(even) {
        flex-direction: column;
        text-align: left;
    }
    
    .step-content {
        margin: 20px 0 0 0;
    }
    
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .qr-code-section {
        order: -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partnership-form {
        padding: 30px 20px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .partnership-hero {
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .requirement-category {
        padding: 30px 20px;
    }
    
    .contact-method {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
    
    .qr-code-section {
        padding: 30px 20px;
    }
    
    .partnership-form {
        padding: 25px 15px;
    }
}