/* Professional Logo Styles */
.logo-component {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.building-structure {
    position: relative;
    width: 32px;
    height: 32px;
}

.building-base {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 4px 4px 0 0;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.building-windows {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    height: 16px;
}

.window-row {
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}

.window {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
}

.building-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-dark);
}

.checkmark {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.checkmark-line-1 {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 6px;
    height: 2px;
    background: var(--success);
    border-radius: 1px;
    transform: rotate(45deg);
}

.checkmark-line-2 {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 2px;
    height: 10px;
    background: var(--success);
    border-radius: 1px;
    transform: rotate(-45deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.company-type {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin: 0;
}
