/* Cooperation Page Styles - Blacklane Inspired */

/* Page Hero Section */
.contact-hero {
    background: url('/pc_static/images/header-hero.jpg') center center / cover no-repeat;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.contact-header {
    position: relative;
    z-index: 1;
}

.contact-header h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 16px 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.section-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Partnership Benefits Section */
.partnership-benefits-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.benefit-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #333;
    color: #ffffff;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--accent-color);
    color: var(--primary-gold);
    font-size: 32px;
   
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-gold);
     box-shadow: 0 4px 12px rgba(255, 207, 112, 0.3);
}

.benefit-card:hover .benefit-icon svg path {
    fill: var(--accent-color);
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
}

.benefit-card > p {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card ul li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 12px;
    position: relative;
    line-height: 1.6;
}

.benefit-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.benefit-card:hover h3,
.benefit-card:hover > p {
    color: #ffffff;
}

.benefit-card:hover ul li,
.benefit-card:hover ul li::before {
    color: #fafafa;
}

/* Enterprise Benefits Section */
.enterprise-benefits-section {
    padding: 80px 0;
    background: var(--accent-color);
}

.enterprise-benefits-section .section-header h2 {
    color: #f8f8f8;
}

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

.enterprise-card {
    background: var(--accent-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.enterprise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.enterprise-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.enterprise-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.enterprise-card p {
    font-size: 14px;
    color: #f8f8f8;
    margin: 0;
    line-height: 1.6;
}

/* API Integration Section */
.api-integration-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.api-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.api-content .highlight {
    color: #ffcf70;
}

.api-intro {
    font-size: 18px;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.api-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.api-features li {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.api-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.api-button {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 207, 112, 0.3);
}

.api-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 207, 112, 0.4);
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--primary-gold) 100%);
}

.api-image {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.api-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.api-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.api-image:hover .api-img {
    transform: scale(1.05);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--accent-color);
    overflow: hidden;
}

.partners-section .section-header h2 {
    color: var(--primary-gold);
}

.partners-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.partners-slider {
    display: flex;
    gap: 40px;
    animation: slide 30s linear infinite;
    width: fit-content;
}

.partner-logo {
    flex-shrink: 0;
    text-align: center;
    width: 200px;
}

.partner-placeholder {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    color: #999;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.partner-placeholder:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Become Partner Section */
.become-partner-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.become-partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 207, 112, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 207, 112, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.become-partner-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 207, 112, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.become-partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 207, 112, 0.3);
}

.become-partner-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.become-partner-content p {
    font-size: 18px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.become-partner-button {
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(255, 207, 112, 0.4);
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.become-partner-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.become-partner-button:hover::before {
    left: 100%;
}

.become-partner-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 207, 112, 0.5);
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--primary-gold) 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .api-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .api-image {
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 400px;
    }
    
    .contact-header h1 {
        font-size: 36px;
    }
    
    .contact-header p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .enterprise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .become-partner-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .become-partner-content h2 {
        font-size: 28px;
    }
    
    .become-partner-content p {
        font-size: 18px;
    }
    
    .become-partner-button {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-header h1 {
        font-size: 28px;
    }
    
    .benefit-card,
    .enterprise-card {
        padding: 25px 20px;
    }
    
    .enterprise-grid {
        grid-template-columns: 1fr;
    }
    
    .become-partner-card {
        padding: 30px 20px;
    }
}
