/* EU Sourcing Page Styles */

/* Hero Section */
.sourcing-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sourcing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none"><circle cx="1" cy="1" r="1" fill="%23003399"/><circle cx="7" cy="1" r="1" fill="%23FFCC00"/><circle cx="1" cy="7" r="1" fill="%23FFCC00"/><circle cx="7" cy="7" r="1" fill="%23003399"/></svg>') repeat;
    opacity: 0.1;
}

.sourcing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #8e6705, #b8860b);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sourcing-hero h1 {
    color: white;
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3em;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* EU Flag Integration */
.eu-flag-section {
    background: linear-gradient(135deg, #003399 0%, #FFCC00 100%);
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.eu-flag-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.eu-flag-stars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 80px;
    background: #003399;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.eu-star {
    color: #FFCC00;
    font-size: 12px;
    position: absolute;
}

.eu-star:nth-child(1) { top: 10px; left: 50%; transform: translateX(-50%); }
.eu-star:nth-child(2) { top: 20px; right: 15px; }
.eu-star:nth-child(3) { top: 35px; right: 10px; }
.eu-star:nth-child(4) { bottom: 35px; right: 10px; }
.eu-star:nth-child(5) { bottom: 20px; right: 15px; }
.eu-star:nth-child(6) { bottom: 10px; left: 50%; transform: translateX(-50%); }
.eu-star:nth-child(7) { bottom: 20px; left: 15px; }
.eu-star:nth-child(8) { bottom: 35px; left: 10px; }
.eu-star:nth-child(9) { top: 35px; left: 10px; }
.eu-star:nth-child(10) { top: 20px; left: 15px; }
.eu-star:nth-child(11) { top: 25px; left: 35px; }
.eu-star:nth-child(12) { bottom: 25px; left: 35px; }

.eu-flag-text {
    color: white;
    flex: 1;
}

.eu-flag-text h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2.2em;
}

.eu-flag-text p {
    font-size: 1.1em;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* Main Content */
.sourcing-content {
    padding: 60px 20px;
    background: #f8f9fa;
}

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

/* Partnership Section */
.partnership-section {
    margin-bottom: 60px;
}

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

.section-header h2 {
    color: #131516;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2em;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8e6705, #b8860b);
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #8e6705;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #8e6705, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
}

.card-icon::after {
    position: relative;
    z-index: 2;
    font-size: 24px;
    color: #8e6705;
}

.partnership-card:nth-child(1) .card-icon::after { content: '🏭'; }
.partnership-card:nth-child(2) .card-icon::after { content: '📦'; }
.partnership-card:nth-child(3) .card-icon::after { content: '🌍'; }

.partnership-card h3 {
    color: #131516;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.partnership-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Products Focus */
.products-focus {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.products-focus h2 {
    text-align: center;
    color: #131516;
    font-size: 2.2em;
    margin-bottom: 40px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.product-tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-tag:hover {
    background: linear-gradient(135deg, #8e6705, #b8860b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 103, 5, 0.3);
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #8e6705;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="none"><circle cx="2" cy="2" r="1" fill="%238e6705" opacity="0.3"/><circle cx="18" cy="2" r="1" fill="%23b8860b" opacity="0.3"/><circle cx="2" cy="18" r="1" fill="%23b8860b" opacity="0.3"/><circle cx="18" cy="18" r="1" fill="%238e6705" opacity="0.3"/></svg>') repeat;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #131516;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    color: #495057;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #8e6705, #b8860b);
    color: white;
    box-shadow: 0 5px 20px rgba(142, 103, 5, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(142, 103, 5, 0.4);
    background: linear-gradient(135deg, #b8860b, #8e6705);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sourcing-hero h1 {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .eu-flag-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partnership-card {
        padding: 30px 20px;
    }
    
    .products-focus {
        padding: 40px 20px;
    }
    
    .cta-section {
        padding: 50px 20px;
    }
    
    .cta-content h2 {
        font-size: 2em;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
