/* laser-bending-highlight.css */

.nh-lb-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #121212 0%, #1c1c1c 100%);
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #2a2a2a;
}

.nh-lb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(237, 27, 36, 0.01) 0px, rgba(237, 27, 36, 0.01) 2px, transparent 2px, transparent 10px);
    pointer-events: none;
    z-index: 0;
}

.nh-lb-container {
    max-width: 1290px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nh-lb-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Content Area */
.nh-lb-content {
    display: flex;
    flex-direction: column;
}

.nh-lb-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(237, 27, 36, 0.1);
    color: #ED1B24;
    border: 1px solid rgba(237, 27, 36, 0.3);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(237, 27, 36, 0.1);
}

.nh-lb-title-wrapper {
    position: relative;
    padding-left: 20px;
    margin-bottom: 25px;
}

.nh-lb-title-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background-color: #ED1B24;
    border-radius: 2px;
}

.nh-lb-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.35 !important;
    color: #ffffff !important;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.nh-lb-text {
    font-size: 16px;
    line-height: 1.7;
    color: #b3b3b3;
    margin: 0 0 30px 0;
}

/* Features List */
.nh-lb-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.nh-lb-feature-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #e0e0e0;
    transition: transform 0.2s ease;
}

.nh-lb-feature-item:hover {
    transform: translateX(5px);
    color: #ffffff;
}

.nh-lb-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(237, 27, 36, 0.15);
    color: #ED1B24;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(237, 27, 36, 0.1);
}

.nh-lb-feature-icon svg {
    width: 14px;
    height: 14px;
}

/* Buttons */
.nh-lb-buttons {
    display: flex;
    gap: 15px;
}

.nh-lb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.nh-lb-btn-primary {
    background-color: #ED1B24;
    color: #ffffff !important;
    border: 2px solid #ED1B24;
    box-shadow: 0 4px 15px rgba(237, 27, 36, 0.3);
}

.nh-lb-btn-primary:hover {
    background-color: transparent;
    color: #ED1B24 !important;
    box-shadow: 0 4px 20px rgba(237, 27, 36, 0.1);
    transform: translateY(-2px);
}

.nh-lb-btn-primary svg {
    transition: transform 0.3s ease;
}

.nh-lb-btn-primary:hover svg {
    transform: translate(3px, -1px);
}

/* Right Image Area */
.nh-lb-image-wrapper {
    position: relative;
    padding: 20px;
}

.nh-lb-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nh-lb-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nh-lb-image-wrapper:hover .nh-lb-image {
    transform: scale(1.05);
}

/* Decorative Frame Background */
.nh-lb-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 40px;
    left: 40px;
    border: 2px solid #333;
    border-radius: 8px;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nh-lb-image-wrapper:hover .nh-lb-image-bg {
    transform: translate(12px, -12px);
    border-color: #ED1B24;
    box-shadow: 0 10px 30px rgba(237, 27, 36, 0.15);
}

/* Animations */
.nh-lb-animate-left,
.nh-lb-animate-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.nh-lb-animate-left {
    transform: translateX(-40px);
}

.nh-lb-animate-right {
    transform: translateX(40px);
}

.nh-lb-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive design */
@media (max-width: 991px) {
    .nh-lb-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .nh-lb-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .nh-lb-section {
        padding: 70px 15px;
    }
    
    .nh-lb-title {
        font-size: 26px !important;
        line-height: 1.4 !important;
    }

    .nh-lb-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .nh-lb-image-bg {
        left: 20px;
        bottom: 20px;
    }
}
