/* =================================
   Professional Industrial Design
   For Hero & About Sections
   ================================= */

/* Hero Section - Professional Equipment Photo */
.professional-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.4) 0%,
        rgba(44, 62, 80, 0.2) 100%
    );
    pointer-events: none;
}

.quality-badges {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.badge-item i {
    font-size: 1.2rem;
    color: #4facfe;
}

.badge-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

/* Gradient Fallback for Hero */
.gradient-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Section - Professional Factory Photo */
.professional-factory-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.factory-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.05) contrast(1.1);
}

.factory-gradient-fallback {
    width: 100%;
    height: 100%;
}

/* Professional hover effects */
.professional-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(79, 172, 254, 0.1) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: 5;
}

.professional-image-container:hover::before {
    transform: translateX(100%);
}

/* Responsive */
@media (max-width: 768px) {
    .quality-badges {
        bottom: 15px;
        left: 15px;
        gap: 8px;
    }

    .badge-item {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .badge-item i {
        font-size: 1rem;
    }
}

/* Animation for badges */
.badge-item {
    animation: fadeInUp 0.6s ease backwards;
}

.badge-item:nth-child(1) {
    animation-delay: 0.8s;
}

.badge-item:nth-child(2) {
    animation-delay: 1s;
}

.badge-item:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove childish animations */
.animated-equipment,
.animated-factory {
    display: none !important;
}

/* Professional visual styling */
.professional-visual {
    position: relative;
}

.professional-visual::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.25;
    }
}
