/* ========================================
   MEDITERRANEAN STEEL - HOVER EFFECTS
   Industrial Professional Animations
   No icon rotations - clean & subtle
   ======================================== */



/* Text subtle lift */
.nav-link:hover span {
    transform: translateY(-2px);
    display: inline-block;
    transition: transform 0.3s ease;
}

/* ===== 2. LOGO HOVER EFFECT ===== */
.logo-simple {
    position: relative;
    transition: transform 0.3s ease;
}

.logo-simple:hover {
    transform: scale(1.02);
}

/* Subtle glow effect */
.logo-simple::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(49, 130, 206, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.logo-simple:hover::after {
    opacity: 1;
}

.logo-image {
    transition: filter 0.3s ease;
}

.logo-simple:hover .logo-image {
    filter: brightness(1.1) drop-shadow(0 4px 8px rgba(49, 130, 206, 0.2));
}

/* ===== 3. STAT CARDS HOVER ===== */
.stat-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 30px -10px rgba(49, 130, 206, 0.3);
}

/* Industrial scan line effect */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 130, 206, 0.15), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

/* Icon background pulse */
.stat-card:hover .stat-icon {
    animation: industrialPulse 1s ease;
    background: var(--accent);
}

@keyframes industrialPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px var(--accent); }
    100% { transform: scale(1); }
}

/* Number glow */
.stat-card:hover .stat-number {
    animation: numberGlow 1s ease;
}

@keyframes numberGlow {
    0% { text-shadow: none; }
    50% { text-shadow: 0 0 10px var(--accent); }
    100% { text-shadow: none; }
}

/* ===== 4. EQUIPMENT CARDS HOVER ===== */
.equipment-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.equipment-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-left-width: 6px;
    box-shadow: 0 15px 30px -10px rgba(49, 130, 206, 0.3);
}

/* Icon color change and subtle scale */
.equipment-card:hover i {
    transform: scale(1.15);
    color: var(--accent);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Corner highlight */
.equipment-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--accent) 50%, transparent 50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.equipment-card:hover::after {
    width: 30px;
    height: 30px;
}

/* ===== 5. VIDEO PLAYER HOVER EFFECTS ===== */
.video-wrapper {
    transition: all 0.3s ease;
    position: relative;
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 40px -15px rgba(49, 130, 206, 0.4);
}

/* Play button industrial hover */
.play-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-button:hover {
    transform: scale(1.15);
    background: var(--accent);
    box-shadow: 0 0 30px var(--accent);
}

/* Caption background */
.video-caption {
    transition: background 0.3s ease;
}

.video-wrapper:hover .video-caption {
    background: rgba(0, 0, 0, 0.6);
}

/* ===== 6. STEEL BILLETS PHOTO HOVER ===== */
.steel-billets-photo {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.steel-billets-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px -15px rgba(49, 130, 206, 0.4);
}

/* Molten steel glow sweep */
.steel-billets-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 215, 0, 0.08) 50%,
        transparent 70%);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.steel-billets-photo:hover::before {
    transform: translateX(100%) rotate(45deg);
}

/* Image subtle zoom */
.billets-image {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.steel-billets-photo:hover .billets-image {
    transform: scale(1.08);
}

/* Caption slide up */
.billets-caption {
    transition: transform 0.3s ease, background 0.3s ease;
}

.steel-billets-photo:hover .billets-caption {
    transform: translateY(-5px);
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* ===== 7. PRODUCT SPECS HOVER ===== */
.product-specs {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-specs:hover {
    transform: translateX(5px);
    border-left-width: 6px;
    box-shadow: 0 20px 30px -10px rgba(49, 130, 206, 0.2);
}

/* List items subtle shift */
.product-specs li {
    transition: transform 0.3s ease, color 0.3s ease;
}

.product-specs:hover li {
    transform: translateX(5px);
}

/* Individual list item hover */
.product-specs li:hover {
    color: var(--accent);
}

.product-specs li:hover i {
    transform: scale(1.2);
    color: var(--accent);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* ===== 8. CONTACT ITEMS HOVER ===== */
.contact-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 15px;
    border-radius: 8px;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(49, 130, 206, 0.1);
    backdrop-filter: blur(5px);
}

/* Industrial connection line */
.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: height 0.3s ease;
    transform: translateY(-50%);
}

.contact-item:hover::before {
    height: 70%;
}

/* Icon color change */
.contact-item:hover i {
    color: var(--accent);
    transition: color 0.3s ease;
}

/* Phone number special hover */
.phone-number:hover {
    background: rgba(49, 130, 206, 0.15);
    transform: scale(1.02);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* ===== 9. MAP CONTAINER HOVER ===== */
.factory-map {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.factory-map:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 40px -15px rgba(49, 130, 206, 0.4);
}

/* Map overlay hover */
.map-overlay {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.factory-map:hover .map-overlay {
    transform: translateY(-5px);
    background: rgba(26, 32, 44, 0.98);
    border-color: var(--accent);
}

/* Map pin hover */
.map-pin {
    transition: all 0.3s ease;
}

.map-pin:hover {
    transform: scale(1.2);
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}

/* ===== 10. EAF CONTROLS HOVER ===== */
.visualization-container:hover {
    box-shadow: 0 0 30px rgba(49, 130, 206, 0.2);
}

/* Toggle buttons industrial hover */
.toggle-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.toggle-btn:hover {
    transform: translateY(-2px);
    background: rgba(49, 130, 206, 0.15);
}

/* Industrial scan effect */
.toggle-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 ease;
}

.toggle-btn:hover::before {
    left: 100%;
}

/* Active button state enhancement */
.toggle-btn.active:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 6px 15px rgba(49, 130, 206, 0.4);
}

/* ===== 11. HIGHLIGHT ITEMS HOVER ===== */
.highlight-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-item:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--accent);
    background: linear-gradient(145deg, #ffffff, #f0f7ff);
}

/* Industrial sparkle effect */
.highlight-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(49, 130, 206, 0.15), transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.highlight-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

.highlight-item:hover i {
    transform: scale(1.2);
    color: var(--accent);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* ===== 12. SOCIAL MEDIA ICONS HOVER ===== */
.social-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Industrial ring effect */
.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

/* Individual platform colors on hover */
.social-icon.facebook:hover { background: #1877f2; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5); }
.social-icon.linkedin:hover { background: #0077b5; }

/* ===== 13. BACK TO TOP BUTTON HOVER ===== */
.back-to-top {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    background: var(--accent);
    box-shadow: 0 10px 30px rgba(49, 130, 206, 0.5);
}

/* Arrow animation */
.back-to-top:hover i {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

/* ===== 14. COOKIE BANNER BUTTON HOVER ===== */
.cookie-banner button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cookie-banner button:hover {
    transform: translateY(-2px) scale(1.05);
    background: var(--accent-dark);
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.4);
}

/* Checkmark stamp effect */
.cookie-banner button::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cookie-banner button:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.cookie-banner button:hover span {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* ===== 15. SECTION TITLES HOVER ===== */
.section-title {
    transition: all 0.3s ease;
}

.section-title:hover {
    transform: translateX(5px);
}

/* Blue line expansion */
.section-title::after {
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title:hover::after {
    width: 150px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark), var(--accent));
}

/* ===== 16. SCROLL INDICATOR HOVER ===== */
.scroll-indicator {
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.2);
}

.scroll-indicator:hover i {
    animation: scrollHover 1s infinite;
    color: var(--accent);
}

@keyframes scrollHover {
    0% { transform: translateY(0); }
    50% { transform: translateY(8px); }
    100% { transform: translateY(0); }
}

/* ===== 17. HERO BUTTONS HOVER ===== */
.btn-primary {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--accent-dark);
    box-shadow: 0 15px 30px -5px rgba(49, 130, 206, 0.5);
}

/* Industrial shine effect */
.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Outline button hover */
.btn-outline {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(49, 130, 206, 0.1);
    border-color: var(--accent);
    box-shadow: 0 15px 30px -5px rgba(49, 130, 206, 0.3);
}

/* Button icons hover - slide only */
.btn:hover i {
    animation: buttonIconSlide 0.5s ease;
}

@keyframes buttonIconSlide {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

/* ===== 18. PROCESS NOTE HOVER ===== */
.process-note {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-note:hover {
    transform: scale(1.02);
    border-left-width: 6px;
    background: linear-gradient(145deg, #ffffff, #f5f9ff);
}


/* ===== 19. FOOTER COPYRIGHT HOVER ===== */
.footer-copyright {
    position: relative;
    overflow: hidden;
}

.footer-copyright p {
    transition: color 0.3s ease;
}

.footer-copyright:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== 20. LANGUAGE SWITCHER BUTTONS HOVER ===== */
.lang-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lang-btn:hover {
    background: rgba(49, 130, 206, 0.2);
    color: white;
}

.lang-btn.active:hover {
    background: #3182ce;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(49, 130, 206, 0.3);
}

/* ===== MOBILE ADJUSTMENTS ===== */
@media (max-width: 992px) {
    /* Reduce or disable some hover effects on mobile */
    .stat-card:hover,
    .equipment-card:hover,
    .product-specs:hover,
    .highlight-item:hover {
        transform: none;
    }
    
    .stat-card:hover .stat-icon,
    .equipment-card:hover i,
    .highlight-item:hover i {
        animation: none;
        transform: none;
    }
    
    .process-note:hover::before {
        opacity: 0;
    }
    
    .btn-primary:hover,
    .btn-outline:hover {
        transform: translateY(-2px);
    }
}

/* ===== REDUCED MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}