/* Block: Highlight Section */
.highlight-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.highlight-section .container {
    position: relative;
    z-index: 3;
}

/* Logo Watermark */
.highlight-logo-watermark {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.highlight-logo-watermark img {
    height: 420px;
    width: auto;
    opacity: 0.07;
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 991px) {
    .highlight-section {
        padding: 80px 0;
    }

    .highlight-logo-watermark {
        left: 1%;
    }

    .highlight-logo-watermark img {
        height: 300px;
    }
}

@media (max-width: 500px) {
    .highlight-logo-watermark {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .highlight-logo-watermark img {
        height: 220px;
        opacity: 0.04;
    }
}
