/*
==============================================================================
LUVEX THEME - PAGE: UV SAFETY EQUIPMENT (OVERHAULED)
==============================================================================
*/

/* --- 1. Animated Hero Section --- */
.hero-animated-safety {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 750px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a192f; /* Dark blue fallback */
}

/* Elegant starfield background */
.hero-animated-safety::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px),
        radial-gradient(rgba(255,255,255,.4), rgba(255,255,255,.1) 2px, transparent 30px);
    background-size: 550px 550px, 350px 350px, 450px 450px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    animation: stars-move 60s linear infinite;
    opacity: 0.15;
    z-index: 1;
}

@keyframes stars-move {
    from { background-position: 0 0, 40px 60px, 130px 270px, 70px 100px; }
    to { background-position: 0 550px, 40px 410px, 130px 720px, 70px 350px; }
}

#hero-canvas-final {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.overlay-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* Increased vertical gap between elements */
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--luvex-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--luvex-gray-300); /* Brighter, more visible color */
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.hero-cta-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem; /* Increased horizontal gap for buttons */
}

.key-points-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem; /* Increased gap */
    margin-top: 1rem; /* Added top margin for more space */
}

.key-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--luvex-gray-300);
    opacity: 0.9;
}

.key-point i {
    color: var(--luvex-bright-cyan);
    font-size: 1.2rem;
}

/* --- 2. General Page Content Styles --- */
/* (Styles for value-card, sections, etc. are global and will apply automatically) */
