/* ================================================
   ENHANCED BONDED WAREHOUSE SECTIONS - Modern & SEO Optimized
   ================================================ */

/* Geographic Advantages Section - White Text for Dark Background */
.geographic-advantages .location-benefits p,
.geographic-advantages .location-item p {
    color: #ffffff !important;
}

.geographic-advantages .location-stat span {
    color: #ffffff !important;
}

/* Warehouse Specifications Section */
.warehouse-specs {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.warehouse-specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 26, 26, 0.1) 50%, transparent 100%);
}

.warehouse-specs-header {
    margin-bottom: 60px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.spec-item {
    background: #ffffff;
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 26, 26, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1A1A1A 0%, #0066cc 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.spec-item:hover::before {
    transform: scaleX(1);
}

.spec-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-icon svg {
    width: 32px;
    height: 32px;
}

.spec-title {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
    line-height: 1.2;
}

.spec-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Customs Compliance Section */
.customs-compliance {
    padding: 80px 0;
}

.customs-compliance .service_inform {
    width: 60%;
}

.customs-compliance .service_image {
    width: 35%;
}

.compliance-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.compliance-item {
    background: rgba(248, 249, 250, 0.6);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.compliance-item:hover {
    background: rgba(248, 249, 250, 0.9);
    transform: translateX(4px);
}

.compliance-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.compliance-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Geographic Advantages Section */
.geographic-advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.geographic-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.geographic-advantages .service_title,
.geographic-advantages .service_descr {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.location-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.location-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.location-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.location-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Industry Solutions Section */
.industry-solutions {
    padding: 80px 0;
}

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

.industry-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 26, 26, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1A1A1A 0%, #0066cc 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.industry-card:hover::before {
    transform: scaleY(1);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.industry-icon svg {
    width: 40px;
    height: 40px;
}

.industry-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

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

.industry-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}

.industry-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #0066cc;
    font-weight: 600;
}

/* Process Excellence Section */
.process-excellence {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-steps {
    margin-top: 40px;
}

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

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #0066cc, rgba(0, 102, 204, 0.3));
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1A1A1A 0%, #0066cc 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-right: 24px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.2;
}

.step-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .compliance-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .location-benefits {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .warehouse-specs,
    .customs-compliance,
    .geographic-advantages,
    .industry-solutions,
    .process-excellence {
        padding: 60px 0;
    }
    
    .specs-grid,
    .industries-grid,
    .location-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spec-item,
    .industry-card,
    .location-item {
        padding: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .compliance-features {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .customs-compliance .service_inform,
    .customs-compliance .service_image {
        width: 100%;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .step-number {
        margin: 0 auto 16px;
    }
}

@media (max-width: 480px) {
    .spec-item,
    .industry-card {
        padding: 20px;
    }
    
    .spec-title {
        font-size: 20px;
    }
    
    .industry-card h3 {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .step-content h4 {
        font-size: 18px;
    }
}