/* Explain: Component styles for a professional, dark-themed insulation website. - */
.site-header {
    background: var(--nav-bg);
}

.btn {
    transition: all 300ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.application-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--surface-color);
}

.application-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

@media (max-width: 767px) {
    .application-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}