/* Global Sourcing Specialists Section */
.global-sourcing-section {
    background: #f1f1f1;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(155, 89, 182, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 144, 226, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #4a90e2, #357abd, #9b59b6);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
}

.feature-icon i {
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    display: inline-block;
    text-align: center;
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 2px;
}

.feature-card:hover h3 {
    color: #4a90e2;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #495057;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
}

.global-sourcing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
}

.global-sourcing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.global-sourcing-title {
    font-size: 48px;
    font-weight: 300;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.1); }
}

.global-sourcing-subtitle {
    font-size: 20px;
    color: #484848;
    margin-bottom: 60px;
    font-weight: 300;
    opacity: 0.8;
}

.global-sourcing-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Featured Manufacturers Section */
.manufacturers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.manufacturers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.manufacturers-section .container {
    position: relative;
    z-index: 2;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
    font-weight: 400;
}

.manufacturers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.manufacturer-item {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.manufacturer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.manufacturer-item:hover::before {
    opacity: 1;
}

.manufacturer-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 144, 226, 0.3);
}

.manufacturer-item a {
    display: block;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.manufacturer-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.manufacturer-item:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .manufacturers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .manufacturers-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .manufacturers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .manufacturer-item {
        padding: 25px 15px;
    }
    
    .manufacturer-item img {
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .manufacturers-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .manufacturers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .manufacturer-item {
        padding: 20px 15px;
    }
    
    .manufacturer-item img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .manufacturers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .manufacturer-item {
        padding: 15px 10px;
    }
    
    .manufacturer-item img {
        max-height: 50px;
    }
}

.global-sourcing-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 72px;
    font-weight: 300;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #d63031 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-plus {
    font-size: 48px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #d63031 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
}

.stat-divider {
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, #e74c3c 0%, #c0392b 50%, #d63031 100%);
    margin: 0 20px;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.3);
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { 
        box-shadow: 0 0 20px rgba(231, 76, 60, 0.3);
        transform: scaleY(1);
    }
    100% { 
        box-shadow: 0 0 30px rgba(231, 76, 60, 0.5);
        transform: scaleY(1.05);
    }
}

.stat-text {
    text-align: left;
}

.stat-text-main {
    font-size: 18px;
    color: #444;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

.stat-text-sub {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.3;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .global-sourcing-section {
        padding: 80px 0;
    }
    
    .global-sourcing-stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-item {
        padding: 25px;
        border-radius: 15px;
    }
    
    .stat-divider {
        width: 80px;
        height: 4px;
        margin: 20px 0;
    }
    
    .global-sourcing-title {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .stat-plus {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .global-sourcing-section {
        padding: 60px 0;
    }
    
    .global-sourcing-container {
        padding: 0 15px;
    }
    
    .global-sourcing-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .global-sourcing-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .stat-item {
        padding: 20px;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-plus {
        font-size: 32px;
    }
    
    .stat-text {
        text-align: center;
    }
    
    .stat-text-main,
    .stat-text-sub {
        font-size: 14px;
    }
}

/* RFQ Section Styles */
.rfq-section {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.rfq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    pointer-events: none;
}

.rfq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.rfq-content {
    text-align: center;
}

.rfq-title {
    font-size: 36px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 50px;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rfq-form-container {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.rfq-form-container img {
    flex-shrink: 0;
    width: 150px;
    height: auto;
}

.rfq-form {
    flex: 1;
    max-width: none;
    margin: 0;
}

.rfq-input-group {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.rfq-input-group:focus-within {
    border-color: #e74c3c;
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
}

.rfq-input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    color: #2c3e50;
}

.rfq-input::placeholder {
    color: #95a5a6;
    font-weight: 300;
}

.rfq-submit-btn {
    padding: 20px 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rfq-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.rfq-submit-btn:hover::before {
    left: 100%;
}

.rfq-submit-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.rfq-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.rfq-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.rfq-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.rfq-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.rfq-feature span {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
}

/* RFQ Responsive Design */
@media (max-width: 768px) {
    .rfq-section {
        padding: 60px 0;
    }
    
    .rfq-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .rfq-input-group {
        flex-direction: column;
        border-radius: 25px;
    }
    
    .rfq-input {
        padding: 18px 25px;
    }
    
    .rfq-submit-btn {
        padding: 18px 30px;
        border-radius: 0 0 25px 25px;
    }
    
    .rfq-features {
        gap: 30px;
    }
    
    .rfq-feature {
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .rfq-title {
        font-size: 24px;
    }
    
    .rfq-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .rfq-feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Additional tech elements */
.global-sourcing-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Particle effect simulation */
.stat-item::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle 4s linear infinite;
}

@keyframes particle {
    0% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% { 
        opacity: 0.6;
    }
    90% { 
        opacity: 0.6;
    }
    100% { 
        transform: translateY(-20px) rotate(360deg);
        opacity: 0;
    }
}