/* ===== VELTROX LED - Custom Styles ===== */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; overflow-x: hidden; }

/* ===== SCROLLBAR HIDE ===== */
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes floatReverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
}
@keyframes spin3d {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    100% { transform: rotateY(360deg) rotateX(360deg); }
}
@keyframes pulse3d {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(247, 147, 30, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(247, 147, 30, 0.6); }
}
@keyframes orbit {
    0% { transform: rotate(0deg) translateX(80px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-reverse { animation: floatReverse 7s ease-in-out infinite; }
.animate-spin3d { animation: spin3d 20s linear infinite; }
.animate-pulse3d { animation: pulse3d 3s ease-in-out infinite; }
.animate-orbit { animation: orbit 15s linear infinite; }
.animate-blob { animation: morphBlob 8s ease-in-out infinite; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ===== 3D TRANSFORMS ===== */
.perspective-1000 { perspective: 1000px; }
.transform-3d { transform-style: preserve-3d; }

.card-3d {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}
.card-3d:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow:
        0 25px 50px -12px rgba(247, 147, 30, 0.25),
        0 0 0 1px rgba(247, 147, 30, 0.1);
}

/* ===== GLASSMORPHISM ===== */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.glass-dark {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.glass-orange {
    background: rgba(247, 147, 30, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 147, 30, 0.2);
}

/* ===== 3D SHAPES ===== */
.shape-3d {
    position: absolute;
    pointer-events: none;
}
.sphere-3d {
    border-radius: 50%;
    background: linear-gradient(135deg, #F7931E 0%, #FFB347 50%, #E8820F 100%);
    box-shadow:
        inset -10px -10px 30px rgba(0,0,0,0.3),
        inset 10px 10px 30px rgba(255,255,255,0.3),
        0 20px 40px rgba(247, 147, 30, 0.3);
}
.ring-3d {
    border-radius: 50%;
    border: 4px solid rgba(247, 147, 30, 0.6);
    box-shadow:
        0 0 20px rgba(247, 147, 30, 0.3),
        inset 0 0 20px rgba(247, 147, 30, 0.1);
}
.cube-3d {
    width: 60px;
    height: 60px;
    transform-style: preserve-3d;
    animation: spin3d 15s linear infinite;
}
.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.8) 0%, rgba(232, 130, 15, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* ===== GRADIENT BACKGROUNDS ===== */
.gradient-mesh {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(247, 147, 30, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 40%, rgba(255, 179, 71, 0.08) 0%, transparent 40%);
}

/* ===== CTA BUTTON ===== */
.cta-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.cta-btn::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;
}
.cta-btn:hover::before {
    left: 100%;
}
.cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(247, 147, 30, 0.4);
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #F7931E 0%, #E8820F 100%);
    transition: height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.product-card:hover::before {
    height: 100%;
}
.product-card:hover::after {
    opacity: 1;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-menu.active {
    transform: translateX(0);
}

/* ===== STAT NUMBERS ===== */
.stat-number {
    background: linear-gradient(135deg, #F7931E 0%, #FFB347 50%, #E8820F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ICON GLOW ===== */
.icon-glow {
    position: relative;
}
.icon-glow::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, #F7931E, #FFB347);
    border-radius: inherit;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s;
    z-index: -1;
}
.icon-glow:hover::after {
    opacity: 0.6;
}

/* ===== IMAGE GALLERY ===== */
.gallery-thumb {
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: #F7931E;
    transform: scale(1.05);
}

/* ===== BREADCRUMB ===== */
.breadcrumb a {
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: #F7931E;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
